mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-21 10:29:29 -05:00

* Initial implementation of consumption templates * Frontend implementation of consumption templates Testing * Support consumption template source * order templates, automatically add permissions * Support title assignment in consumption templates * Refactoring, filters to and, show sources on list Show sources on template list, update some translation strings Make filters and minor testing * Update strings * Only update django-multiselectfield * Basic docs, document some methods * Improve testing coverage, template multi-assignment merges
15 lines
362 B
TypeScript
15 lines
362 B
TypeScript
import { ObjectWithId } from './object-with-id'
|
|
|
|
export interface PaperlessUser extends ObjectWithId {
|
|
username?: string
|
|
first_name?: string
|
|
last_name?: string
|
|
date_joined?: Date
|
|
is_staff?: boolean
|
|
is_active?: boolean
|
|
is_superuser?: boolean
|
|
groups?: number[] // PaperlessGroup[]
|
|
user_permissions?: string[]
|
|
inherited_permissions?: string[]
|
|
}
|