mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 02:39:33 +02:00
Add video channels
This commit is contained in:
parent
8113a93a0d
commit
72c7248b6f
56 changed files with 2011 additions and 280 deletions
|
@ -1,4 +1,5 @@
|
|||
import { UserRole } from './user-role.type'
|
||||
import { VideoChannel } from '../videos/video-channel.model'
|
||||
|
||||
export interface User {
|
||||
id: number
|
||||
|
@ -7,5 +8,10 @@ export interface User {
|
|||
displayNSFW: boolean
|
||||
role: UserRole
|
||||
videoQuota: number
|
||||
createdAt: Date
|
||||
createdAt: Date,
|
||||
author: {
|
||||
id: number
|
||||
uuid: string
|
||||
}
|
||||
videoChannels?: VideoChannel[]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue