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