This repository was archived by the owner on Jun 27, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ module.exports = function (app) {
11
11
slot : { type : String } ,
12
12
showOnce : { type : Boolean , default : true } ,
13
13
requireConfirmation : { type : Boolean , default : false } ,
14
+ active : { type : Boolean , default : true } ,
14
15
createdAt : { type : Date , default : Date . now } ,
15
16
updatedAt : { type : Date , default : Date . now } ,
16
17
wasSeeded : { type : Boolean }
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ const invites = require('./invites/invites.service.js');
19
19
const usersCandos = require ( './users-candos/users-candos.service.js' ) ;
20
20
const search = require ( './search/search.service.js' ) ;
21
21
const usersettings = require ( './usersettings/usersettings.service.js' ) ;
22
+ const systemNotifications = require ( './system-notifications/system-notifications.service.js' ) ;
22
23
23
24
module . exports = function ( ) {
24
25
const app = this ; // eslint-disable-line no-unused-vars
@@ -43,4 +44,5 @@ module.exports = function () {
43
44
app . configure ( usersCandos ) ;
44
45
app . configure ( search ) ;
45
46
app . configure ( usersettings ) ;
47
+ app . configure ( systemNotifications ) ;
46
48
} ;
You can’t perform that action at this time.
0 commit comments