@xuda.io/drive_module 1.1.529 → 1.1.530
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 +9 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -501,7 +501,10 @@ exports.delete_drive_files = async function (req) {
|
|
|
501
501
|
);
|
|
502
502
|
}
|
|
503
503
|
const misc_module = require(`${module_path}/misc_module`);
|
|
504
|
-
misc_module.rsync_drive_resources_to_remote_servers(
|
|
504
|
+
misc_module.rsync_drive_resources_to_remote_servers(
|
|
505
|
+
"studio",
|
|
506
|
+
app_id_master
|
|
507
|
+
);
|
|
505
508
|
break;
|
|
506
509
|
}
|
|
507
510
|
|
|
@@ -539,6 +542,11 @@ exports.delete_drive_files = async function (req) {
|
|
|
539
542
|
doc_ret.data
|
|
540
543
|
);
|
|
541
544
|
|
|
545
|
+
const misc_module = require(`${module_path}/misc_module`);
|
|
546
|
+
misc_module.rsync_drive_resources_to_remote_servers(
|
|
547
|
+
"workspace",
|
|
548
|
+
app_id_reference
|
|
549
|
+
);
|
|
542
550
|
break;
|
|
543
551
|
}
|
|
544
552
|
|