]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/users/user-update-me.model.ts
81790377e19e5e94f5a6c92d31c0027e55406de2
[github/Chocobozzz/PeerTube.git] / shared / models / users / user-update-me.model.ts
1 import { NSFWPolicyType } from '../videos/nsfw-policy.type'
2 import { WebTorrentPolicyType } from './user-webtorrent-policy.type'
3
4 export interface UserUpdateMe {
5 displayName?: string
6 description?: string
7 nsfwPolicy?: NSFWPolicyType,
8 webTorrentPolicy?: WebTorrentPolicyType,
9 autoPlayVideo?: boolean
10 email?: string
11 currentPassword?: string
12 password?: string
13 }