mirror of
https://github.com/LucasVbr/meeting-app.git
synced 2026-07-09 15:08:06 +00:00
Refactor Dashboard
Took 1 hour 32 minutes
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
import {User} from '@/models/data_models/User';
|
||||
|
||||
export type Session = {
|
||||
user: User
|
||||
token: string
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
export type User = {
|
||||
id: string
|
||||
email: string
|
||||
password: string
|
||||
firstName: string
|
||||
lastName: string
|
||||
role: "USER" | "ADMIN"
|
||||
}
|
||||
Reference in New Issue
Block a user