2020-01-22 09:41:09 +00:00
|
|
|
const app = require('vn-loopback/server/server');
|
|
|
|
|
2018-09-19 13:05:07 +00:00
|
|
|
module.exports = Self => {
|
2019-03-14 14:07:24 +00:00
|
|
|
require('../methods/zone/clone')(Self);
|
2019-09-19 15:30:16 +00:00
|
|
|
require('../methods/zone/getLeaves')(Self);
|
2019-09-25 18:06:42 +00:00
|
|
|
require('../methods/zone/getEvents')(Self);
|
2019-10-08 05:22:38 +00:00
|
|
|
require('../methods/zone/toggleIsIncluded')(Self);
|
2018-09-19 13:05:07 +00:00
|
|
|
|
|
|
|
Self.validatesPresenceOf('agencyModeFk', {
|
|
|
|
message: `Agency cannot be blank`
|
|
|
|
});
|
2020-01-22 09:41:09 +00:00
|
|
|
|
|
|
|
Self.observe('after save', async function() {
|
|
|
|
await app.models.ZoneClosure.doRecalc();
|
|
|
|
});
|
|
|
|
|
|
|
|
Self.observe('after delete', async function() {
|
|
|
|
await app.models.ZoneClosure.doRecalc();
|
|
|
|
});
|
2018-09-19 13:05:07 +00:00
|
|
|
};
|