mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 17:59:37 +02:00
20 lines
478 B
TypeScript
20 lines
478 B
TypeScript
import { Account } from '../actors'
|
|
import { VideoChannel } from '../videos/video-channel.model'
|
|
import { UserRole } from './user-role'
|
|
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
|
|
|
|
export interface User {
|
|
id: number
|
|
username: string
|
|
email: string
|
|
nsfwPolicy: NSFWPolicyType
|
|
autoPlayVideo: boolean
|
|
role: UserRole
|
|
videoQuota: number
|
|
createdAt: Date
|
|
account: Account
|
|
videoChannels?: VideoChannel[]
|
|
|
|
blocked: boolean
|
|
blockedReason?: string
|
|
}
|