@xuda.io/account_module 1.2.1142 → 1.2.1143
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 +1 -0
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -2782,6 +2782,7 @@ export const delete_account_profile = async function (req, job_id, headers) {
|
|
|
2782
2782
|
export const unarchive_account_profile = async function (req) {
|
|
2783
2783
|
const { profile_id } = req;
|
|
2784
2784
|
try {
|
|
2785
|
+
const team_module = await import(`${module_path}/team_module/index.mjs`);
|
|
2785
2786
|
var account_profile_doc = await db_module.get_couch_doc_native('xuda_accounts', profile_id);
|
|
2786
2787
|
|
|
2787
2788
|
if (account_profile_doc.stat !== 5) {
|