mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-11 07:28:56 +01:00
27 lines
595 B
Rust
27 lines
595 B
Rust
use actix_web::web;
|
|
use actix_web::HttpResponse;
|
|
use actix_web_macros::get;
|
|
use serde::Serialize;
|
|
|
|
use crate::helpers::Authentication;
|
|
use crate::Data;
|
|
|
|
pub fn services(cfg: &mut web::ServiceConfig) {
|
|
cfg.service(list);
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct KeysResponse {
|
|
private: Option<String>,
|
|
public: Option<String>,
|
|
}
|
|
|
|
#[get("/keys", wrap = "Authentication::Admin")]
|
|
async fn list(data: web::Data<Data>) -> HttpResponse {
|
|
let api_keys = data.api_keys.clone();
|
|
HttpResponse::Ok().json(KeysResponse {
|
|
private: api_keys.private,
|
|
public: api_keys.public,
|
|
})
|
|
}
|