]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/users/user-update-me.model.ts
Add 'Most liked videos' page
[github/Chocobozzz/PeerTube.git] / shared / models / users / user-update-me.model.ts
1 import { NSFWPolicyType } from '../videos/nsfw-policy.type'
2
3 export interface UserUpdateMe {
4 displayName?: string
5 description?: string
6 nsfwPolicy?: NSFWPolicyType
7
8 webTorrentEnabled?: boolean
9 autoPlayVideo?: boolean
10 autoPlayNextVideo?: boolean
11 videosHistoryEnabled?: boolean
12 videoLanguages?: string[]
13
14 email?: string
15 currentPassword?: string
16 password?: string
17
18 theme?: string
19
20 noInstanceConfigWarningModal?: boolean
21 noWelcomeModal?: boolean
22 }