mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
feat: get metadata about the current api key (#21027)
This commit is contained in:
parent
a313e4338e
commit
e00556a34a
12 changed files with 174 additions and 12 deletions
|
|
@ -2027,6 +2027,14 @@ export function createApiKey({ apiKeyCreateDto }: {
|
|||
body: apiKeyCreateDto
|
||||
})));
|
||||
}
|
||||
export function getMyApiKey(opts?: Oazapfts.RequestOpts) {
|
||||
return oazapfts.ok(oazapfts.fetchJson<{
|
||||
status: 200;
|
||||
data: ApiKeyResponseDto;
|
||||
}>("/api-keys/me", {
|
||||
...opts
|
||||
}));
|
||||
}
|
||||
/**
|
||||
* This endpoint requires the `apiKey.delete` permission.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue