[#NUMERO_TICKET] TITRE TICKET #2

Merged
malio merged 302 commits from develop into main 2026-03-18 13:16:19 +00:00
Showing only changes of commit 7f2371e522 - Show all commits

View File

@@ -3,10 +3,14 @@ export type UserData = {
'@id'?: string
username: string
roles: string[]
client?: { '@id'?: string; id: number; name: string } | null
allowedProjects?: { '@id'?: string; id: number; name: string }[]
}
export type UserWrite = {
username: string
password?: string
roles: string[]
client?: string | null
allowedProjects?: string[]
}