mirror of
https://github.com/immich-app/immich.git
synced 2025-12-18 01:11:07 +03:00
fix: missing permissions and optional update (#18735)
* fix: missing permissions * fix: test
This commit is contained in:
@@ -8335,10 +8335,6 @@
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"permissions"
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"ActivityCreateDto": {
|
||||
|
||||
@@ -415,8 +415,8 @@ export type ApiKeyCreateResponseDto = {
|
||||
secret: string;
|
||||
};
|
||||
export type ApiKeyUpdateDto = {
|
||||
name: string;
|
||||
permissions: Permission[];
|
||||
name?: string;
|
||||
permissions?: Permission[];
|
||||
};
|
||||
export type AssetBulkDeleteDto = {
|
||||
force?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user