]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/users/user-update-me.model.ts
Add save replay live tests
[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
bee29df8 11 autoPlayNextVideoPlaylist?: boolean
8b9a525a 12 videosHistoryEnabled?: boolean
3caf77d3 13 videoLanguages?: string[]
8b9a525a 14
8094a898 15 email?: string
7cd26d0a 16 currentPassword?: string
8094a898 17 password?: string
7cd4d2ba
C
18
19 theme?: string
43d0ea7f
C
20
21 noInstanceConfigWarningModal?: boolean
22 noWelcomeModal?: boolean
8094a898 23}