]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/users/user-update-me.model.ts
Add url field in caption and use it for thumbnails
[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 autoPlayNextVideoPlaylist?: boolean
12 videosHistoryEnabled?: boolean
13 videoLanguages?: string[]
14
15 email?: string
16 currentPassword?: string
17 password?: string
18
19 theme?: string
20
21 noInstanceConfigWarningModal?: boolean
22 noWelcomeModal?: boolean
23 }