aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/users/user.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/core/users/user.model.ts')
-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