]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/users/user-update-me.model.ts
Add history on server side
[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
8b9a525a
C
10 videosHistoryEnabled?: boolean
11
8094a898 12 email?: string
7cd26d0a 13 currentPassword?: string
8094a898
C
14 password?: string
15}