Add User API operations (GET, POST, PATCH, DELETE) with password hashing processor, frontend service, drawer and admin tab. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
194 B
TypeScript
13 lines
194 B
TypeScript
export type UserData = {
|
|
id: number
|
|
'@id'?: string
|
|
username: string
|
|
roles: string[]
|
|
}
|
|
|
|
export type UserWrite = {
|
|
username: string
|
|
password?: string
|
|
roles: string[]
|
|
}
|