feat : système de blocage utilisateur

This commit is contained in:
2026-03-25 15:52:51 +01:00
parent fa7b44fb02
commit c75d17146b
11 changed files with 164 additions and 24 deletions

View File

@@ -2,16 +2,19 @@ export interface UserData {
id: number
username: string
roles: string[]
isLocked: boolean
}
export type UserPayload = {
username?: string
password?: string
roles?: string[]
isLocked?: boolean
}
export type UserFormData = {
username: string
password: string
role: string
isLocked: boolean
}