feat : Ajout d'un onglet Observation sur la page employé + fonctionnalité de verrouillage utilisateur

This commit is contained in:
2026-03-25 10:16:53 +01:00
parent 3c434d20b2
commit dd090ecb7e
20 changed files with 726 additions and 22 deletions

View File

@@ -0,0 +1,6 @@
export type Observation = {
id: number
month: string
content: string
createdAt: string
}

View File

@@ -4,5 +4,6 @@ export type User = {
id: number
username: string
roles: string[]
isLocked: boolean
employee?: Employee | null
}