aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/users/user-update-me.model.ts
blob: 81790377e19e5e94f5a6c92d31c0027e55406de2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { NSFWPolicyType } from '../videos/nsfw-policy.type'
import { WebTorrentPolicyType } from './user-webtorrent-policy.type'

export interface UserUpdateMe {
  displayName?: string
  description?: string
  nsfwPolicy?: NSFWPolicyType,
  webTorrentPolicy?: WebTorrentPolicyType,
  autoPlayVideo?: boolean
  email?: string
  currentPassword?: string
  password?: string
}