aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-08-27 10:15:55 +0200
committerChocobozzz <me@florianbigard.com>2021-08-27 10:15:55 +0200
commit8f581725651c4b2c213d75fc028e306bbf239d3e (patch)
tree8deb842327c2a227d8e302d9a84bd9f8f9f7affa /client/src/app/core
parent1ff15061b31245df4248e47228d0a90b07ab3f01 (diff)
downloadPeerTube-8f581725651c4b2c213d75fc028e306bbf239d3e.tar.gz
PeerTube-8f581725651c4b2c213d75fc028e306bbf239d3e.tar.zst
PeerTube-8f581725651c4b2c213d75fc028e306bbf239d3e.zip
Allow accounts to skip account setup modal
Diffstat (limited to 'client/src/app/core')
-rw-r--r--client/src/app/core/users/user.model.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/app/core/users/user.model.ts b/client/src/app/core/users/user.model.ts
index 7467519c4..00078af5d 100644
--- a/client/src/app/core/users/user.model.ts
+++ b/client/src/app/core/users/user.model.ts
@@ -55,6 +55,7 @@ export class User implements UserServerModel {
55 55
56 noInstanceConfigWarningModal: boolean 56 noInstanceConfigWarningModal: boolean
57 noWelcomeModal: boolean 57 noWelcomeModal: boolean
58 noAccountSetupWarningModal: boolean
58 59
59 pluginAuth: string | null 60 pluginAuth: string | null
60 61
@@ -98,6 +99,7 @@ export class User implements UserServerModel {
98 99
99 this.noInstanceConfigWarningModal = hash.noInstanceConfigWarningModal 100 this.noInstanceConfigWarningModal = hash.noInstanceConfigWarningModal
100 this.noWelcomeModal = hash.noWelcomeModal 101 this.noWelcomeModal = hash.noWelcomeModal
102 this.noAccountSetupWarningModal = hash.noAccountSetupWarningModal
101 103
102 this.notificationSettings = hash.notificationSettings 104 this.notificationSettings = hash.notificationSettings
103 105