@xuda.io/account_module 1.2.906 → 1.2.907
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 +2 -3
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1804,7 +1804,7 @@ export const pin_contact = async function (req) {
|
|
|
1804
1804
|
|
|
1805
1805
|
const contact_save_ret = await db_module.save_couch_doc('xuda_contacts', contact_doc);
|
|
1806
1806
|
|
|
1807
|
-
global[`
|
|
1807
|
+
global[`_account_module_ch`].sendToQueue(
|
|
1808
1808
|
'ws_dashboard_module',
|
|
1809
1809
|
Buffer.from(
|
|
1810
1810
|
JSON.stringify({
|
|
@@ -1839,7 +1839,7 @@ export const unpin_contact = async function (req) {
|
|
|
1839
1839
|
|
|
1840
1840
|
const contact_save_ret = await db_module.save_couch_doc('xuda_contacts', contact_doc);
|
|
1841
1841
|
|
|
1842
|
-
global[`
|
|
1842
|
+
global[`_account_module_ch`].sendToQueue(
|
|
1843
1843
|
'ws_dashboard_module',
|
|
1844
1844
|
Buffer.from(
|
|
1845
1845
|
JSON.stringify({
|
|
@@ -2339,4 +2339,3 @@ export const onboarding_completed = async function (req, job_id, headers) {
|
|
|
2339
2339
|
return { code: -44, data: err.message };
|
|
2340
2340
|
}
|
|
2341
2341
|
};
|
|
2342
|
-
debugger;
|