19 lines
350 B
JavaScript
19 lines
350 B
JavaScript
|
module.exports = Self => {
|
||
|
Self.remoteMethod('send', {
|
||
|
description: 'Send notifications from queue',
|
||
|
accessType: 'WRITE',
|
||
|
returns: {
|
||
|
type: 'object',
|
||
|
root: true
|
||
|
},
|
||
|
http: {
|
||
|
path: `/send`,
|
||
|
verb: 'POST'
|
||
|
}
|
||
|
});
|
||
|
|
||
|
Self.send = async() => {
|
||
|
|
||
|
};
|
||
|
};
|