]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - shared/models/users/user-update-me.model.ts
Autoplay next recommended video (#2137)
[github/Chocobozzz/PeerTube.git] / shared / models / users / user-update-me.model.ts
... / ...
CommitLineData
1import { NSFWPolicyType } from '../videos/nsfw-policy.type'
2
3export 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}