add basic user management

This commit is contained in:
araemer 2025-11-02 09:09:34 +01:00
parent 09150ba3bb
commit 9e7ad622f9
12 changed files with 673 additions and 35 deletions

View file

@ -0,0 +1,7 @@
/**
* DTO for changing user password
*/
export class ChangeUserPasswordRequestDto {
userId?: string;
password?: string;
}

View file

@ -0,0 +1,9 @@
import { UserDto } from "./UserDto.js";
/**
* DTO used for user creation
*/
export class CreateUserRequestDto {
userData?: UserDto;
password?: string;
}