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
|
2019-09-24 02:48:01 -04:00
|
|
|
autoPlayNextVideo?: boolean
|
2019-12-11 14:20:42 -05:00
|
|
|
autoPlayNextVideoPlaylist?: boolean
|
2018-12-17 09:52:38 -05:00
|
|
|
videosHistoryEnabled?: boolean
|
2019-06-19 08:55:58 -04:00
|
|
|
videoLanguages?: string[]
|
2018-12-17 09:52:38 -05:00
|
|
|
|
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
|
2019-07-09 05:45:19 -04:00
|
|
|
|
|
|
|
theme?: string
|
2019-08-28 08:40:06 -04:00
|
|
|
|
|
|
|
noInstanceConfigWarningModal?: boolean
|
|
|
|
noWelcomeModal?: boolean
|
2021-08-27 04:15:55 -04:00
|
|
|
noAccountSetupWarningModal?: boolean
|
2017-09-05 15:29:39 -04:00
|
|
|
}
|