]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/users/user-update-me.model.ts
Add blacklist reason field
[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 {
ed56ad11 4 displayName?: string
2422c46b 5 description?: string
0883b324 6 nsfwPolicy?: NSFWPolicyType
7efe153b 7 autoPlayVideo?: boolean
8094a898
C
8 email?: string
9 password?: string
10}