1
0
Fork 0
peertube/shared/models/users/user-update-me.model.ts
Chocobozzz 0883b3245b
Add ability to choose what policy we have for NSFW videos
There is a global instance setting and a per user setting
2018-04-19 11:01:34 +02:00

9 lines
211 B
TypeScript

import { NSFWPolicyType } from '../videos/nsfw-policy.type'
export interface UserUpdateMe {
description?: string
nsfwPolicy?: NSFWPolicyType
autoPlayVideo?: boolean
email?: string
password?: string
}