2018-04-19 04:01:34 -05:00
|
|
|
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
|
|
|
|
|
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-12-17 08:52:38 -06:00
|
|
|
nsfwPolicy?: NSFWPolicyType
|
|
|
|
|
|
|
|
webTorrentEnabled?: boolean
|
2017-12-19 03:45:49 -06:00
|
|
|
autoPlayVideo?: boolean
|
2019-09-24 01:48:01 -05:00
|
|
|
autoPlayNextVideo?: boolean
|
2019-12-11 13:20:42 -06:00
|
|
|
autoPlayNextVideoPlaylist?: boolean
|
2018-12-17 08:52:38 -06:00
|
|
|
videosHistoryEnabled?: boolean
|
2019-06-19 07:55:58 -05:00
|
|
|
videoLanguages?: string[]
|
2018-12-17 08:52:38 -06:00
|
|
|
|
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
|
2019-07-09 04:45:19 -05:00
|
|
|
|
|
|
|
theme?: string
|
2019-08-28 07:40:06 -05:00
|
|
|
|
|
|
|
noInstanceConfigWarningModal?: boolean
|
|
|
|
noWelcomeModal?: boolean
|
2017-09-05 14:29:39 -05:00
|
|
|
}
|