aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/users/user.model.ts
blob: 2f6a3c71982a846ef8ee9ebc552bc991e5f883fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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'

export interface User {
  id: number
  username: string
  email: string
  emailVerified: boolean
  nsfwPolicy: NSFWPolicyType

  adminFlags?: UserAdminFlag

  autoPlayVideo: boolean
  webTorrentEnabled: boolean
  videosHistoryEnabled: boolean

  role: UserRole
  roleLabel: string

  videoQuota: number
  videoQuotaDaily: number
  createdAt: Date
  account: Account
  notificationSettings?: UserNotificationSetting
  videoChannels?: VideoChannel[]

  blocked: boolean
  blockedReason?: string

  videoQuotaUsed?: number
}