PeerTube_original/shared/models/users/user-update-me.model.ts
Rigel Kent 64cc5e8575
add webtorrent opt-out settings
- add a key in localstorage to remember the opt-out
- add a user setting
2018-10-13 11:53:42 +02:00

14 lines
374 B
TypeScript

import { NSFWPolicyType } from '../videos/nsfw-policy.type'
import { WebTorrentPolicyType } from './user-webtorrent-policy.type'
export interface UserUpdateMe {
displayName?: string
description?: string
nsfwPolicy?: NSFWPolicyType,
webTorrentPolicy?: WebTorrentPolicyType,
autoPlayVideo?: boolean
email?: string
currentPassword?: string
password?: string
}