feat(server, web): add checkbox to create user screen for shouldChang… (#7598)

feat(server, web): add checkbox to create user screen for shouldChangePassword
This commit is contained in:
Sam Holton
2024-03-04 00:40:03 -05:00
committed by GitHub
parent e8b001f62f
commit 7ef202c8b2
7 changed files with 42 additions and 4 deletions
+3
View File
@@ -7672,6 +7672,9 @@
"nullable": true,
"type": "integer"
},
"shouldChangePassword": {
"type": "boolean"
},
"storageLabel": {
"nullable": true,
"type": "string"
@@ -958,6 +958,7 @@ export type CreateUserDto = {
name: string;
password: string;
quotaSizeInBytes?: number | null;
shouldChangePassword?: boolean;
storageLabel?: string | null;
};
export type UpdateUserDto = {