add basic user management
This commit is contained in:
parent
09150ba3bb
commit
9e7ad622f9
12 changed files with 673 additions and 35 deletions
7
frontend/src/api/dtos/ChangeUserPasswordRequestDto.ts
Normal file
7
frontend/src/api/dtos/ChangeUserPasswordRequestDto.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
/**
|
||||
* DTO for changing user password
|
||||
*/
|
||||
export class ChangeUserPasswordRequestDto {
|
||||
userId?: string;
|
||||
password?: string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue