backups (tgz): work with a layout

this will allow us to place the localstorage directory in an arbitrary
location
This commit is contained in:
Girish Ramakrishnan
2018-12-20 14:33:29 -08:00
parent 3500236d32
commit 13c628b58b
15 changed files with 219 additions and 42 deletions

View File

@@ -118,7 +118,8 @@ describe('Apps', function () {
ownerId: USER_0.id,
env: {
'CUSTOM_KEY': 'CUSTOM_VALUE'
}
},
dataDir: ''
};
var APP_1 = {
@@ -135,7 +136,8 @@ describe('Apps', function () {
accessRestriction: { users: [ 'someuser' ], groups: [ GROUP_0.id ] },
memoryLimit: 0,
ownerId: USER_0.id,
env: {}
env: {},
dataDir: ''
};
var APP_2 = {
@@ -154,7 +156,8 @@ describe('Apps', function () {
robotsTxt: null,
sso: false,
ownerId: USER_0.id,
env: {}
env: {},
dataDir: ''
};
before(function (done) {