refactor(openapi): modify profile-delete auth to AdminAPIKey in API doc (#7697)

This commit is contained in:
Sandeep Kumar
2025-04-03 13:05:25 +05:30
committed by GitHub
parent d2f74737e4
commit b8f66155d4
2 changed files with 2 additions and 2 deletions

View File

@ -3324,7 +3324,7 @@
}, },
"security": [ "security": [
{ {
"api_key": [] "admin_api_key": []
} }
] ]
} }

View File

@ -108,7 +108,7 @@ pub async fn profile_retrieve() {}
), ),
tag = "Profile", tag = "Profile",
operation_id = "Delete the Profile", operation_id = "Delete the Profile",
security(("api_key" = [])) security(("admin_api_key" = []))
)] )]
pub async fn profile_delete() {} pub async fn profile_delete() {}