]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - shared/models/users/user-update-me.model.ts
Add import finished and video published notifs
[github/Chocobozzz/PeerTube.git] / shared / models / users / user-update-me.model.ts
... / ...
CommitLineData
1import { NSFWPolicyType } from '../videos/nsfw-policy.type'
2
3export 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}