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

21 lines
478 B
TypeScript
Raw Normal View History

2017-12-14 17:38:41 +01:00
import { Account } from '../actors'
2017-10-24 19:41:09 +02:00
import { VideoChannel } from '../videos/video-channel.model'
import { UserRole } from './user-role'
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
2017-06-16 10:36:18 +02:00
2017-06-10 22:15:25 +02:00
export interface User {
id: number
username: string
email: string
nsfwPolicy: NSFWPolicyType
autoPlayVideo: boolean
2017-06-16 10:36:18 +02:00
role: UserRole
2017-09-04 20:07:54 +02:00
videoQuota: number
2017-12-04 10:34:40 +01:00
createdAt: Date
account: Account
2017-10-24 19:41:09 +02:00
videoChannels?: VideoChannel[]
2018-08-08 17:36:10 +02:00
blocked: boolean
blockedReason?: string
2017-06-10 22:15:25 +02:00
}