]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/users/user.model.ts
Merge branch 'release/2.1.0' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / users / user.model.ts
1 import { Account } from '../actors'
2 import { VideoChannel } from '../videos/channel/video-channel.model'
3 import { UserRole } from './user-role'
4 import { NSFWPolicyType } from '../videos/nsfw-policy.type'
5 import { UserNotificationSetting } from './user-notification-setting.model'
6 import { UserAdminFlag } from './user-flag.model'
7 import { VideoPlaylistType } from '@shared/models'
8
9 export interface User {
10 id: number
11 username: string
12 email: string
13 pendingEmail: string | null
14
15 emailVerified: boolean
16 nsfwPolicy: NSFWPolicyType
17
18 adminFlags?: UserAdminFlag
19
20 autoPlayVideo: boolean
21 autoPlayNextVideo: boolean
22 autoPlayNextVideoPlaylist: boolean
23 webTorrentEnabled: boolean
24 videosHistoryEnabled: boolean
25 videoLanguages: string[]
26
27 role: UserRole
28 roleLabel: string
29
30 videoQuota: number
31 videoQuotaDaily: number
32 videoQuotaUsed?: number
33 videoQuotaUsedDaily?: number
34
35 theme: string
36
37 account: Account
38 notificationSettings?: UserNotificationSetting
39 videoChannels?: VideoChannel[]
40
41 blocked: boolean
42 blockedReason?: string
43
44 noInstanceConfigWarningModal: boolean
45 noWelcomeModal: boolean
46
47 createdAt: Date
48 }
49
50 export interface MyUserSpecialPlaylist {
51 id: number
52 name: string
53 type: VideoPlaylistType
54 }
55
56 export interface MyUser extends User {
57 specialPlaylists: MyUserSpecialPlaylist[]
58 }