improve login and add migration script

This commit is contained in:
Anika Raemer 2025-09-21 20:01:33 +02:00
parent 1fce467571
commit 099ffb74a1
5 changed files with 106 additions and 9 deletions

View file

@ -0,0 +1,9 @@
import { UserDto } from "./UserDto";
/**
* Response to a successful login
*/
export class LoginResponseDto {
userData: UserDto;
token: string;
}