mirror of
https://github.com/LukeHagar/immich.git
synced 2025-12-08 20:47:46 +00:00
feat: get metadata about the current api key (#21027)
This commit is contained in:
@@ -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.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user