]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/users/user-update-me.model.ts
Autoplay next recommended video (#2137)
[github/Chocobozzz/PeerTube.git] / shared / models / users / user-update-me.model.ts
index 83417a7bd7440b3e45bc62dc18b7623012e900fb..0a833f84cc55fccf72ad77cec7d48fc30df6fb68 100644 (file)
@@ -1,6 +1,22 @@
+import { NSFWPolicyType } from '../videos/nsfw-policy.type'
+
 export interface UserUpdateMe {
-  displayNSFW?: boolean
+  displayName?: string
+  description?: string
+  nsfwPolicy?: NSFWPolicyType
+
+  webTorrentEnabled?: boolean
   autoPlayVideo?: boolean
+  autoPlayNextVideo?: boolean
+  videosHistoryEnabled?: boolean
+  videoLanguages?: string[]
+
   email?: string
+  currentPassword?: string
   password?: string
+
+  theme?: string
+
+  noInstanceConfigWarningModal?: boolean
+  noWelcomeModal?: boolean
 }