aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/users/user.model.ts
blob: 8eddaa49660d7038a5c87bf24073ee167ed69441 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                   
                                                                    
                                      
                                                           
 



                       
                            
                        
                
                    

                  
                                


                        
 
import { Account } from '../actors'
import { VideoChannel } from '../videos/channel/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
}