mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 10:49:28 +02:00
9 lines
211 B
TypeScript
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
|
|
}
|