All checks were successful
Auto Tag Develop / tag (push) Successful in 6s
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [ ] Pas de régression - [ ] TU/TI/TF rédigée - [ ] TU/TI/TF OK - [ ] CHANGELOG modifié Reviewed-on: #41 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
21 lines
324 B
TypeScript
21 lines
324 B
TypeScript
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
|
|
}
|