Add user adminFlags

This commit is contained in:
Chocobozzz 2019-04-15 10:49:46 +02:00
parent 31b48aad47
commit 1eddc9a74f
No known key found for this signature in database
GPG key ID: 583A612D890159BE
65 changed files with 982 additions and 591 deletions

View file

@ -1,4 +1,5 @@
import { UserRole } from './user-role'
import { UserAdminFlag } from './user-flag.model'
export interface UserCreate {
username: string
@ -7,4 +8,5 @@ export interface UserCreate {
videoQuota: number
videoQuotaDaily: number
role: UserRole
adminFlags?: UserAdminFlag
}