daveappserver 0.6.15 → 0.6.16
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/appserver.js +2 -1
- package/package.json +1 -1
package/appserver.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var myVersion = "0.6.
|
|
1
|
+
var myVersion = "0.6.16", myProductName = "daveAppServer";
|
|
2
2
|
|
|
3
3
|
exports.start = startup;
|
|
4
4
|
exports.notifySocketSubscribers = notifySocketSubscribers;
|
|
@@ -417,6 +417,7 @@ function cleanFileStats (stats) { //4/19/21 by DW
|
|
|
417
417
|
s3.getObject (getS3FilePath (screenname, relpath, flprivate), callback);
|
|
418
418
|
}
|
|
419
419
|
function saveFileToS3 (screenname, relpath, type, flprivate, filetext, callback) {
|
|
420
|
+
const acl = undefined; //use the default
|
|
420
421
|
s3.newObject (getS3FilePath (screenname, relpath, flprivate), filetext, type, acl, callback);
|
|
421
422
|
}
|
|
422
423
|
//storage functions
|