@xuda.io/drive_module 1.1.530 → 1.1.531
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 +6 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -573,6 +573,12 @@ exports.delete_drive_files = async function (req) {
|
|
|
573
573
|
doc_ret.data.ts = Date.now();
|
|
574
574
|
doc_ret.data.stat = 4;
|
|
575
575
|
save_ret = await db_module.save_couch_doc("xuda_drive", doc_ret.data);
|
|
576
|
+
|
|
577
|
+
const misc_module = require(`${module_path}/misc_module`);
|
|
578
|
+
misc_module.rsync_drive_resources_to_remote_servers(
|
|
579
|
+
"user",
|
|
580
|
+
doc_ret.data.uid
|
|
581
|
+
);
|
|
576
582
|
break;
|
|
577
583
|
}
|
|
578
584
|
default:
|