mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 12:27:13 +02:00
remove trailing slash in path
This commit is contained in:
parent
5c7fa9b924
commit
67a0c9fff8
9 changed files with 12 additions and 12 deletions
|
@ -54,7 +54,7 @@ pub fn configure(cfg: &mut web::ServiceConfig) {
|
|||
/// Create an API Key.
|
||||
#[utoipa::path(
|
||||
post,
|
||||
path = "/",
|
||||
path = "",
|
||||
tag = "Keys",
|
||||
security(("Bearer" = ["keys.create", "keys.*", "*"])),
|
||||
request_body = CreateApiKey,
|
||||
|
@ -133,7 +133,7 @@ impl ListApiKeys {
|
|||
/// List all API Keys
|
||||
#[utoipa::path(
|
||||
get,
|
||||
path = "/",
|
||||
path = "",
|
||||
tag = "Keys",
|
||||
security(("Bearer" = ["keys.get", "keys.*", "*"])),
|
||||
params(ListApiKeys),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue