2018-04-19 05:01:34 -04:00
|
|
|
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
|
|
|
|
|
2017-09-05 15:29:39 -04:00
|
|
|
export interface UserUpdateMe {
|
2018-04-26 04:03:40 -04:00
|
|
|
displayName?: string
|
2018-02-15 08:46:26 -05:00
|
|
|
description?: string
|
2018-12-17 09:52:38 -05:00
|
|
|
nsfwPolicy?: NSFWPolicyType
|
|
|
|
|
|
|
|
webTorrentEnabled?: boolean
|
2017-12-19 04:45:49 -05:00
|
|
|
autoPlayVideo?: boolean
|
2018-12-17 09:52:38 -05:00
|
|
|
videosHistoryEnabled?: boolean
|
|
|
|
|
2017-09-05 15:29:39 -04:00
|
|
|
email?: string
|
2018-09-26 11:02:50 -04:00
|
|
|
currentPassword?: string
|
2017-09-05 15:29:39 -04:00
|
|
|
password?: string
|
|
|
|
}
|