authentication

This commit is contained in:
Bastian Wagner
2024-09-13 21:14:09 +02:00
parent c00aad559d
commit b4a5f04505
65 changed files with 1140 additions and 77 deletions

View File

@@ -1,3 +1,5 @@
import { Role } from '../entitites';
export interface IUser {
id: string;
username: string;
@@ -7,4 +9,6 @@ export interface IUser {
accessToken?: string;
refreshToken?: string;
role?: string | Role;
}