Unify API perm endpoint to set_permissions, initial frontend support for doc sharing

This commit is contained in:
Michael Shamoon
2022-12-07 00:36:31 -08:00
parent 2973e4672a
commit 79da613cb6
12 changed files with 111 additions and 117 deletions

View File

@@ -0,0 +1,8 @@
import { ObjectWithId } from './object-with-id'
import { PaperlessUser } from './paperless-user'
export interface ObjectWithPermissions extends ObjectWithId {
user?: PaperlessUser
permissions?: Array<[number, string]>
}