2018-04-19 04:01:34 -05:00
|
|
|
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
|
2018-10-05 08:17:34 -05:00
|
|
|
import { WebTorrentPolicyType } from './user-webtorrent-policy.type'
|
2018-04-19 04:01:34 -05:00
|
|
|
|
2017-09-05 14:29:39 -05:00
|
|
|
export interface UserUpdateMe {
|
2018-04-26 03:03:40 -05:00
|
|
|
displayName?: string
|
2018-02-15 07:46:26 -06:00
|
|
|
description?: string
|
2018-10-05 08:17:34 -05:00
|
|
|
nsfwPolicy?: NSFWPolicyType,
|
|
|
|
webTorrentPolicy?: WebTorrentPolicyType,
|
2017-12-19 03:45:49 -06:00
|
|
|
autoPlayVideo?: boolean
|
2017-09-05 14:29:39 -05:00
|
|
|
email?: string
|
2018-09-26 10:02:50 -05:00
|
|
|
currentPassword?: string
|
2017-09-05 14:29:39 -05:00
|
|
|
password?: string
|
|
|
|
}
|