X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fusers%2Fuser-update-me.model.ts;h=db6539cd2211f41768d5692efe6b5af90587276c;hb=afff310e50f2fa8419bb4242470cbde46ab54463;hp=0a73879ed358180ca3e3bd0022d14c5b8d6362c6;hpb=0883b3245bf0deb9106c4041e9afbd3521b79280;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/users/user-update-me.model.ts b/shared/models/users/user-update-me.model.ts index 0a73879ed..db6539cd2 100644 --- a/shared/models/users/user-update-me.model.ts +++ b/shared/models/users/user-update-me.model.ts @@ -1,9 +1,23 @@ import { NSFWPolicyType } from '../videos/nsfw-policy.type' export interface UserUpdateMe { + displayName?: string description?: string 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 }