]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
0883b324
C
1import { NSFWPolicyType } from '../videos/nsfw-policy.type'
2
8094a898 3export interface UserUpdateMe {
ed56ad11 4 displayName?: string
2422c46b 5 description?: string
8b9a525a
C
6 nsfwPolicy?: NSFWPolicyType
7
8 webTorrentEnabled?: boolean
7efe153b 9 autoPlayVideo?: boolean
6aa54148 10 autoPlayNextVideo?: boolean
8b9a525a 11 videosHistoryEnabled?: boolean
3caf77d3 12 videoLanguages?: string[]
8b9a525a 13
8094a898 14 email?: string
7cd26d0a 15 currentPassword?: string
8094a898 16 password?: string
7cd4d2ba
C
17
18 theme?: string
43d0ea7f
C
19
20 noInstanceConfigWarningModal?: boolean
21 noWelcomeModal?: boolean
8094a898 22}