mirror of
https://github.com/plankanban/planka.git
synced 2025-12-17 01:11:23 +03:00
15 lines
311 B
JavaScript
15 lines
311 B
JavaScript
module.exports = {
|
|
inputs: {
|
|
criteria: {
|
|
type: 'json',
|
|
custom: (value) => _.isArray(value) || _.isPlainObject(value),
|
|
},
|
|
},
|
|
|
|
async fn(inputs, exits) {
|
|
const notifications = await Notification.find(inputs.criteria).sort('id DESC');
|
|
|
|
return exits.success(notifications);
|
|
},
|
|
};
|