added interceptor and authService to manage log

This commit is contained in:
2026-03-24 19:08:34 +01:00
parent 491c57b061
commit ef2afb0b58
66 changed files with 1815 additions and 777 deletions
@@ -1,7 +1,7 @@
/**
* BeReadyBackend
*
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
@@ -9,11 +9,11 @@
*/
export interface CreateUserDto {
firstName?: string | null;
name?: string | null;
username?: string | null;
email?: string | null;
password?: string | null;
export interface CreateUserDto {
firstName: string;
name: string;
username: string;
email: string;
password: string;
}