]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/users/user-update-me.model.ts
Better typings
[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
64cc5e85 6 nsfwPolicy?: NSFWPolicyType,
ed638e53 7 webTorrentEnabled?: boolean,
7efe153b 8 autoPlayVideo?: boolean
8094a898 9 email?: string
7cd26d0a 10 currentPassword?: string
8094a898
C
11 password?: string
12}