mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 23:35:22 +01:00
Refactor frontend data models
This commit is contained in:
parent
5723bd8dd8
commit
66b2d90c50
120 changed files with 640 additions and 706 deletions
9
src-ui/src/app/data/group.ts
Normal file
9
src-ui/src/app/data/group.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import { ObjectWithId } from './object-with-id'
|
||||
|
||||
export interface Group extends ObjectWithId {
|
||||
name?: string
|
||||
|
||||
user_count?: number // not implemented yet
|
||||
|
||||
permissions?: string[]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue