]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/users/user-update-me.model.ts
Add ability to choose what policy we have for NSFW videos
[github/Chocobozzz/PeerTube.git] / shared / models / users / user-update-me.model.ts
CommitLineData
0883b324
C
1import { NSFWPolicyType } from '../videos/nsfw-policy.type'
2
8094a898 3export interface UserUpdateMe {
2422c46b 4 description?: string
0883b324 5 nsfwPolicy?: NSFWPolicyType
7efe153b 6 autoPlayVideo?: boolean
8094a898
C
7 email?: string
8 password?: string
9}