feat: implement authentication with JWT and user management
This commit is contained in:
parent
c4c762cafe
commit
35d8fbaea0
42 changed files with 989 additions and 397 deletions
|
@ -1,5 +1,6 @@
|
|||
export interface User {
|
||||
authentikId: string;
|
||||
id: number;
|
||||
email: string;
|
||||
username: string;
|
||||
balance: number;
|
||||
}
|
||||
|
|
Reference in a new issue