GlobalNotificationSetting.js 373 B

12345678
  1. const mongoose = require('mongoose');
  2. const GlobalNotificationSetting = require('./GlobalNotificationSetting/index');
  3. module.exports = function(crowi) {
  4. GlobalNotificationSetting.class.crowi = crowi;
  5. GlobalNotificationSetting.schema.loadClass(GlobalNotificationSetting.class);
  6. return mongoose.model('GlobalNotificationSetting', GlobalNotificationSetting.schema);
  7. };