Merge branch 'develop' into feat/317-admin-modification-creation-transporteur

# Conflicts:
#	CHANGELOG.md
This commit is contained in:
2026-02-09 16:00:49 +01:00
16 changed files with 417 additions and 78 deletions

View File

@@ -1,4 +1,17 @@
export interface UserData {
id: number
username: string
roles: string[]
}
export type UserPayload = {
username?: string
password?: string
roles?: string[]
}
export type UserFormData = {
username: string
password: string
role: string
}