2017-10-24 19:41:09 +02:00
|
|
|
import { VideoChannel } from '../videos/video-channel.model'
|
2017-10-27 16:55:03 +02:00
|
|
|
import { UserRole } from './user-role'
|
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
|
|
|
|
displayNSFW: boolean
|
2017-06-16 10:36:18 +02:00
|
|
|
role: UserRole
|
2017-09-04 20:07:54 +02:00
|
|
|
videoQuota: number
|
2017-10-24 19:41:09 +02:00
|
|
|
createdAt: Date,
|
2017-11-10 17:27:49 +01:00
|
|
|
account: {
|
2017-10-24 19:41:09 +02:00
|
|
|
id: number
|
|
|
|
uuid: string
|
|
|
|
}
|
|
|
|
videoChannels?: VideoChannel[]
|
2017-06-10 22:15:25 +02:00
|
|
|
}
|