add npm script for sending daily notifications

This commit is contained in:
Bilal Catic
2019-11-04 11:03:43 +01:00
parent 23e319da5e
commit 2be013de1f
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
"use strict";
const {
notifyRequestsWithDailyOption
} = require("../services/notificationService");
(async () => {
await notifyRequestsWithDailyOption();
})();