Skip to content
This repository was archived by the owner on Jun 27, 2019. It is now read-only.

Commit 483196e

Browse files
committed
Let usersettings feature pass
1 parent 7811a49 commit 483196e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

server/models/usersettings.model.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ module.exports = function (app) {
99
userId: {type: String, required: true, unique: true},
1010
uiLanguage: {type: String, required: true},
1111
contentLanguages: {type: Array, default: []},
12+
filter: {
13+
categoryIds: { type: Array, index: true },
14+
emotions: { type: Array, index: true }
15+
},
1216
hideUsersWithoutTermsOfUseSigniture: {type: Boolean},
1317
updatedAt: { type: Date, default: Date.now }
1418
});

0 commit comments

Comments
 (0)