user-update-me.model.ts 354 B

12345678910111213141516
  1. import { NSFWPolicyType } from '../videos/nsfw-policy.type'
  2. export interface UserUpdateMe {
  3. displayName?: string
  4. description?: string
  5. nsfwPolicy?: NSFWPolicyType
  6. webTorrentEnabled?: boolean
  7. autoPlayVideo?: boolean
  8. videosHistoryEnabled?: boolean
  9. videoLanguages?: string[]
  10. email?: string
  11. currentPassword?: string
  12. password?: string
  13. }