salix/back/methods/campaign/upcoming.js

30 lines
662 B
JavaScript
Raw Normal View History

2020-10-05 05:53:03 +00:00
module.exports = Self => {
Self.remoteMethod('upcoming', {
2020-10-05 12:47:42 +00:00
description: 'Returns the upcoming campaign',
2020-10-05 05:53:03 +00:00
accessType: 'READ',
accepts: [],
returns: {
type: ['object'],
root: true
},
http: {
path: `/upcoming`,
verb: 'GET'
}
});
Self.upcoming = async() => {
2023-01-16 14:18:24 +00:00
const minDate = Date.vnNew();
2020-10-05 12:45:39 +00:00
minDate.setFullYear(minDate.getFullYear() - 1);
2020-10-05 05:53:03 +00:00
return Self.findOne({
where: {
dated: {
2020-10-05 12:45:39 +00:00
gte: minDate
2020-10-05 05:53:03 +00:00
}
},
2020-10-05 12:45:39 +00:00
order: 'dated ASC'
2020-10-05 05:53:03 +00:00
});
};
};