]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/users/user-update-me.model.ts
Remove protractor workaround
[github/Chocobozzz/PeerTube.git] / shared / models / users / user-update-me.model.ts
index 81790377e19e5e94f5a6c92d31c0027e55406de2..6d7df38fbbf679df2b4005233326731839527372 100644 (file)
@@ -1,13 +1,24 @@
 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,
+  nsfwPolicy?: NSFWPolicyType
+
+  webTorrentEnabled?: boolean
   autoPlayVideo?: boolean
+  autoPlayNextVideo?: boolean
+  autoPlayNextVideoPlaylist?: boolean
+  videosHistoryEnabled?: boolean
+  videoLanguages?: string[]
+
   email?: string
   currentPassword?: string
   password?: string
+
+  theme?: string
+
+  noInstanceConfigWarningModal?: boolean
+  noWelcomeModal?: boolean
+  noAccountSetupWarningModal?: boolean
 }