aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/users/user-update-me.model.ts
blob: 0a73879ed358180ca3e3bd0022d14c5b8d6362c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { NSFWPolicyType } from '../videos/nsfw-policy.type'

export interface UserUpdateMe {
  description?: string
  nsfwPolicy?: NSFWPolicyType
  autoPlayVideo?: boolean
  email?: string
  password?: string
}