1
0
Fork 0
peertube/shared/models/users/user.model.ts

31 lines
752 B
TypeScript
Raw Normal View History

2017-12-14 11:38:41 -05:00
import { Account } from '../actors'
2018-08-14 08:59:53 -04:00
import { VideoChannel } from '../videos/channel/video-channel.model'
import { UserRole } from './user-role'
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
2018-12-26 04:36:24 -05:00
import { UserNotificationSetting } from './user-notification-setting.model'
2017-06-16 04:36:18 -04:00
2017-06-10 16:15:25 -04:00
export interface User {
id: number
username: string
email: string
emailVerified: boolean
nsfwPolicy: NSFWPolicyType
autoPlayVideo: boolean
webTorrentEnabled: boolean
videosHistoryEnabled: boolean
2017-06-16 04:36:18 -04:00
role: UserRole
2017-09-04 14:07:54 -04:00
videoQuota: number
videoQuotaDaily: number
2017-12-04 04:34:40 -05:00
createdAt: Date
account: Account
2018-12-26 04:36:24 -05:00
notificationSettings?: UserNotificationSetting
2017-10-24 13:41:09 -04:00
videoChannels?: VideoChannel[]
2018-08-08 11:36:10 -04:00
blocked: boolean
blockedReason?: string
2018-08-14 11:56:51 -04:00
videoQuotaUsed?: number
2017-06-10 16:15:25 -04:00
}