@xuda.io/notification_module 1.1.35 → 1.1.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -168,6 +168,7 @@ exports.submit_notification = async function (
|
|
|
168
168
|
read: false,
|
|
169
169
|
ref: ref || uuid,
|
|
170
170
|
date_created_ts: Date.now(),
|
|
171
|
+
date_created: Date.now(),
|
|
171
172
|
sender_uid,
|
|
172
173
|
stat: 3,
|
|
173
174
|
stat_ts: Date.now(),
|
|
@@ -661,7 +662,6 @@ setTimeout(async () => {
|
|
|
661
662
|
// uid = "341cf2d32991a68e4d8aaba6c16e15cc",
|
|
662
663
|
// ip = "192.11.22.333",
|
|
663
664
|
// name = "Boaz Avrahami";
|
|
664
|
-
|
|
665
665
|
// const aa = await module.exports.submit_notification({
|
|
666
666
|
// type: "deploy",
|
|
667
667
|
// app_id: app_id,
|
|
@@ -678,5 +678,5 @@ setTimeout(async () => {
|
|
|
678
678
|
// ref: null,
|
|
679
679
|
// email: null,
|
|
680
680
|
// });
|
|
681
|
-
console.log(aa);
|
|
681
|
+
// console.log(aa);
|
|
682
682
|
}, 2000);
|