]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/users/user.model.ts
Users can change ownership of their video [#510] (#888)
[github/Chocobozzz/PeerTube.git] / shared / models / users / user.model.ts
index 4b17881e5cd6e382b8e8d93d52c7ee1442e3a243..8147dc48e8c6eedec90f89cf09eb845dc7482ab5 100644 (file)
@@ -1,15 +1,23 @@
-import { Account } from '../accounts'
-import { VideoChannel } from '../videos/video-channel.model'
+import { Account } from '../actors'
+import { VideoChannel } from '../videos/channel/video-channel.model'
 import { UserRole } from './user-role'
+import { NSFWPolicyType } from '../videos/nsfw-policy.type'
 
 export interface User {
   id: number
   username: string
   email: string
-  displayNSFW: boolean
+  nsfwPolicy: NSFWPolicyType
+  autoPlayVideo: boolean
   role: UserRole
   videoQuota: number
+  videoQuotaDaily: number
   createdAt: Date
   account: Account
   videoChannels?: VideoChannel[]
+
+  blocked: boolean
+  blockedReason?: string
+
+  videoQuotaUsed?: number
 }