mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Begin user quota
This commit is contained in:
@@ -2,4 +2,5 @@ export interface UserCreate {
|
||||
username: string
|
||||
password: string
|
||||
email: string
|
||||
videoQuota: number
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
export interface UserUpdate {
|
||||
displayNSFW?: boolean
|
||||
password?: string
|
||||
videoQuota?: number
|
||||
}
|
||||
|
||||
@@ -6,5 +6,6 @@ export interface User {
|
||||
email: string
|
||||
displayNSFW: boolean
|
||||
role: UserRole
|
||||
videoQuota: number
|
||||
createdAt: Date
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user