PeerTube/shared/models/users/user.model.ts

24 lines
539 B
TypeScript
Raw Normal View History

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'
import { UserRole } from './user-role'
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
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
nsfwPolicy: NSFWPolicyType
autoPlayVideo: boolean
2017-06-16 03:36:18 -05:00
role: UserRole
2017-09-04 13:07:54 -05:00
videoQuota: number
videoQuotaDaily: number
2017-12-04 03:34:40 -06:00
createdAt: Date
account: Account
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
videoQuotaUsed?: number
2017-06-10 15:15:25 -05:00
}