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

17 lines
367 B
TypeScript
Raw Normal View History

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