]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/users/user-update-me.model.ts
Refactor how we use icons
[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 videosHistoryEnabled?: boolean
11
12 email?: string
13 currentPassword?: string
14 password?: string
15 }