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,20 +1,21 @@
/**
* BeReadyBackend
*
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { CreateUserGroupDto } from './create-user-group-dto';
import {CreateUserGroupDto} from './create-user-group-dto';
export interface CreateGroupDto {
label?: string | null;
title?: string | null;
description?: string | null;
duration?: number;
export interface CreateGroupDto {
label: string;
title: string;
description: string;
duration: number;
voteDuration?: number | null;
userGroups?: Array<CreateUserGroupDto> | null;
}