mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-15 10:13:15 -05:00
15 lines
344 B
TypeScript
15 lines
344 B
TypeScript
import { ObjectWithId } from './object-with-id'
|
|
|
|
export interface User extends ObjectWithId {
|
|
username?: string
|
|
first_name?: string
|
|
last_name?: string
|
|
date_joined?: Date
|
|
is_staff?: boolean
|
|
is_active?: boolean
|
|
is_superuser?: boolean
|
|
groups?: number[] // Group[]
|
|
user_permissions?: string[]
|
|
inherited_permissions?: string[]
|
|
}
|