6aa5414813
* Start working on autoplay of next video * Ignore changes made by gitpod * Apply changes from PR#1370 * Correct the spelling of recommendations * Fix linting errors * Move boolean check to existing onEnded handler * Pick a random video until the recommendations are improved * Add simple tests for autoPlayNextVideo * Fix lint ...again
46 lines
1 KiB
TypeScript
46 lines
1 KiB
TypeScript
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
|
|
pendingEmail: string | null
|
|
|
|
emailVerified: boolean
|
|
nsfwPolicy: NSFWPolicyType
|
|
|
|
adminFlags?: UserAdminFlag
|
|
|
|
autoPlayVideo: boolean
|
|
autoPlayNextVideo: boolean
|
|
webTorrentEnabled: boolean
|
|
videosHistoryEnabled: boolean
|
|
videoLanguages: string[]
|
|
|
|
role: UserRole
|
|
roleLabel: string
|
|
|
|
videoQuota: number
|
|
videoQuotaDaily: number
|
|
videoQuotaUsed?: number
|
|
videoQuotaUsedDaily?: number
|
|
|
|
theme: string
|
|
|
|
account: Account
|
|
notificationSettings?: UserNotificationSetting
|
|
videoChannels?: VideoChannel[]
|
|
|
|
blocked: boolean
|
|
blockedReason?: string
|
|
|
|
noInstanceConfigWarningModal: boolean
|
|
noWelcomeModal: boolean
|
|
|
|
createdAt: Date
|
|
}
|