@xuda.io/notification_module 1.1.109 → 1.1.110
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.mjs +5 -4
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -62,8 +62,8 @@ export const update_notification_status = async (req) => {
|
|
|
62
62
|
});
|
|
63
63
|
return await db_module.save_couch_doc('xuda_notification', notification_doc);
|
|
64
64
|
};
|
|
65
|
-
|
|
66
|
-
export const submit_notification = async (req
|
|
65
|
+
//, _ch= global[`_notification_module_ch`]
|
|
66
|
+
export const submit_notification = async (req) => {
|
|
67
67
|
let { type, app_id, to_app_id, uid_arr, subject = '', body = '', delivery_method = [], display_type = 'info', ref, email, sender_uid, system, topic, params } = req;
|
|
68
68
|
let obj = {};
|
|
69
69
|
const { notification_categories } = await import(path.join(process.env.XUDA_HOME, 'notification_templates.mjs'));
|
|
@@ -505,7 +505,8 @@ export const update_system_notification = async (req) => {
|
|
|
505
505
|
return await db_module.save_couch_doc('xuda_notification', notification_doc);
|
|
506
506
|
};
|
|
507
507
|
|
|
508
|
-
export const submit_topic_app_notification = async (req
|
|
508
|
+
export const submit_topic_app_notification = async (req) => {
|
|
509
|
+
//, _ch
|
|
509
510
|
const { uid, topic, to_uid = [], to_app_id, app_id, system, type, params } = req;
|
|
510
511
|
try {
|
|
511
512
|
if (!_.isArray(to_uid)) {
|
|
@@ -542,7 +543,7 @@ export const submit_topic_app_notification = async (req, _ch) => {
|
|
|
542
543
|
params,
|
|
543
544
|
};
|
|
544
545
|
|
|
545
|
-
return submit_notification(msg_obj
|
|
546
|
+
return submit_notification(msg_obj); //, _ch
|
|
546
547
|
} catch (err) {
|
|
547
548
|
return { code: -1, data: err.message };
|
|
548
549
|
}
|