]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/users/user.model.ts
Add auth plugin info in users list
[github/Chocobozzz/PeerTube.git] / shared / models / users / user.model.ts
index 06a66020631dbed26dc1ade9169bce16d758d7b1..42be042894b4e2249831faf921f30ad131668d22 100644 (file)
@@ -2,23 +2,64 @@ import { Account } from '../actors'
 import { VideoChannel } from '../videos/channel/video-channel.model'
 import { UserRole } from './user-role'
 import { NSFWPolicyType } from '../videos/nsfw-policy.type'
+import { UserNotificationSetting } from './user-notification-setting.model'
+import { UserAdminFlag } from './user-flag.model'
+import { VideoPlaylistType } from '@shared/models'
 
 export interface User {
   id: number
   username: string
   email: string
+  pendingEmail: string | null
+
+  emailVerified: boolean
   nsfwPolicy: NSFWPolicyType
+
+  adminFlags?: UserAdminFlag
+
   autoPlayVideo: boolean
+  autoPlayNextVideo: boolean
+  autoPlayNextVideoPlaylist: boolean
+  webTorrentEnabled: boolean
+  videosHistoryEnabled: boolean
+  videoLanguages: string[]
+
   role: UserRole
+  roleLabel: string
+
   videoQuota: number
   videoQuotaDaily: number
-  createdAt: Date
+  videoQuotaUsed?: number
+  videoQuotaUsedDaily?: number
+  videosCount?: number
+  videoAbusesCount?: number
+  videoAbusesAcceptedCount?: number
+  videoAbusesCreatedCount?: number
+  videoCommentsCount? : number
+
+  theme: string
+
   account: Account
+  notificationSettings?: UserNotificationSetting
   videoChannels?: VideoChannel[]
 
   blocked: boolean
   blockedReason?: string
 
-  videoQuotaUsed?: number
-  [key: string]: any
+  noInstanceConfigWarningModal: boolean
+  noWelcomeModal: boolean
+
+  createdAt: Date
+
+  pluginAuth: string | null
+}
+
+export interface MyUserSpecialPlaylist {
+  id: number
+  name: string
+  type: VideoPlaylistType
+}
+
+export interface MyUser extends User {
+  specialPlaylists: MyUserSpecialPlaylist[]
 }