2017-12-14 10:38:41 -06:00
|
|
|
import { Account } from '../actors'
|
2018-08-14 07:59:53 -05:00
|
|
|
import { VideoChannel } from '../videos/channel/video-channel.model'
|
2017-10-27 09:55:03 -05:00
|
|
|
import { UserRole } from './user-role'
|
2018-04-19 04:01:34 -05:00
|
|
|
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
|
2018-12-26 03:36:24 -06:00
|
|
|
import { UserNotificationSetting } from './user-notification-setting.model'
|
2019-04-15 03:49:46 -05:00
|
|
|
import { UserAdminFlag } from './user-flag.model'
|
2017-06-16 03:36:18 -05:00
|
|
|
|
2017-06-10 15:15:25 -05:00
|
|
|
export interface User {
|
|
|
|
id: number
|
|
|
|
username: string
|
|
|
|
email: string
|
2019-06-11 04:54:33 -05:00
|
|
|
pendingEmail: string | null
|
2019-08-28 07:40:06 -05:00
|
|
|
|
2018-11-21 01:48:29 -06:00
|
|
|
emailVerified: boolean
|
2018-04-19 04:01:34 -05:00
|
|
|
nsfwPolicy: NSFWPolicyType
|
2018-12-18 04:32:37 -06:00
|
|
|
|
2019-04-15 03:49:46 -05:00
|
|
|
adminFlags?: UserAdminFlag
|
|
|
|
|
2017-12-19 03:45:49 -06:00
|
|
|
autoPlayVideo: boolean
|
2019-09-24 01:48:01 -05:00
|
|
|
autoPlayNextVideo: boolean
|
2019-12-11 13:20:42 -06:00
|
|
|
autoPlayNextVideoPlaylist: boolean
|
2018-12-18 04:32:37 -06:00
|
|
|
webTorrentEnabled: boolean
|
|
|
|
videosHistoryEnabled: boolean
|
2019-08-28 07:40:06 -05:00
|
|
|
videoLanguages: string[]
|
2018-12-18 04:32:37 -06:00
|
|
|
|
2017-06-16 03:36:18 -05:00
|
|
|
role: UserRole
|
2019-04-15 03:49:46 -05:00
|
|
|
roleLabel: string
|
|
|
|
|
2017-09-04 13:07:54 -05:00
|
|
|
videoQuota: number
|
2018-08-28 02:01:35 -05:00
|
|
|
videoQuotaDaily: number
|
2019-08-28 07:40:06 -05:00
|
|
|
videoQuotaUsed?: number
|
|
|
|
videoQuotaUsedDaily?: number
|
2019-07-10 07:06:19 -05:00
|
|
|
|
|
|
|
theme: string
|
|
|
|
|
2017-12-04 03:34:40 -06:00
|
|
|
account: Account
|
2018-12-26 03:36:24 -06:00
|
|
|
notificationSettings?: UserNotificationSetting
|
2017-10-24 12:41:09 -05:00
|
|
|
videoChannels?: VideoChannel[]
|
2018-08-08 10:36:10 -05:00
|
|
|
|
|
|
|
blocked: boolean
|
|
|
|
blockedReason?: string
|
2018-08-14 10:56:51 -05:00
|
|
|
|
2019-08-28 07:40:06 -05:00
|
|
|
noInstanceConfigWarningModal: boolean
|
|
|
|
noWelcomeModal: boolean
|
|
|
|
|
|
|
|
createdAt: Date
|
2017-06-10 15:15:25 -05:00
|
|
|
}
|