Browse Source

AlarmPushConfig 禁用的不推送

dev
巴林闲侠 2 years ago
parent
commit
d70b71c619
  1. 1
      api/app/lib/controllers/push/config.js
  2. 5
      api/app/lib/schedule/alarms_push.js

1
api/app/lib/controllers/push/config.js

@ -19,6 +19,7 @@ async function list (ctx) {
where: { where: {
del: false del: false
}, },
order: [['id', 'desc']],
include: [{ include: [{
model: models.ProjectCorrelation, model: models.ProjectCorrelation,
where: projectCorrelationWhere, where: projectCorrelationWhere,

5
api/app/lib/schedule/alarms_push.js

@ -16,13 +16,14 @@ module.exports = function (app, opts) {
const curMinOfYear = moment().diff(moment().startOf('year'), 'minutes') const curMinOfYear = moment().diff(moment().startOf('year'), 'minutes')
const configListRes = await models.AlarmPushConfig.findAll({ const configListRes = await models.AlarmPushConfig.findAll({
where: { where: {
del: false del: false,
disable: false
}, },
order: ['id'], order: ['id'],
include: [{ include: [{
model: models.ProjectCorrelation, model: models.ProjectCorrelation,
where: { where: {
del: false del: false,
}, },
required: true required: true
}], }],

Loading…
Cancel
Save