1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 10:49:28 +02:00
Peertube/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

13 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
}