feat: gestion-utilisateur #1

Merged
Clement merged 37 commits from feat/gestion-utilisateur into master 2024-05-20 10:48:35 +00:00
Showing only changes of commit 063660db9d - Show all commits

View File

@ -1,19 +1,19 @@
export interface PBData{ export interface PBData{
id: string | null id?: string | null
collectionId: string | null collectionId?: string | null
collectionName: string | null collectionName?: string | null
created: string | null // TODO: passé ca en date auto created?: string | null // TODO: passé ca en date auto
updated: string | null // TODO: passé ca en date auto updated?: string | null // TODO: passé ca en date auto
} }
export default interface UserObj extends PBData{ export default interface UserObj extends PBData{
avatar: string | null avatar?: string | null
username: string username: string
email: string email: string
emailVisibility: false emailVisibility?: boolean
password: string | undefined password?: string | undefined
passwordConfirm: string | undefined passwordConfirm?: string | undefined
name: string | null name: string | null
} }