diff options
Diffstat (limited to 'src/server/authentication/models/user_model.ts')
-rw-r--r-- | src/server/authentication/models/user_model.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/authentication/models/user_model.ts b/src/server/authentication/models/user_model.ts index 29076ba19..3d4ed6896 100644 --- a/src/server/authentication/models/user_model.ts +++ b/src/server/authentication/models/user_model.ts @@ -23,6 +23,7 @@ export type DashUserModel = mongoose.Document & { allWorkspaceIds: Array<String>, activeWorkspaceId: String, + activeUsersId: String, profile: { name: string, @@ -53,6 +54,7 @@ const userSchema = new mongoose.Schema({ default: [] }, activeWorkspaceId: String, + activeUsersId: String, facebook: String, twitter: String, |