move wellKnownJson to domains

after some more thought:
* If app moves to another location, user has to remember to move all this config
* It's not really associated with an app. It's to do with the domain info
* We can put some hints in the UI if app is missing.

part of #703
This commit is contained in:
Girish Ramakrishnan
2020-12-23 15:34:23 -08:00
parent 8a17e13ec4
commit 663e0952fc
24 changed files with 100 additions and 98 deletions

View File

@@ -66,6 +66,7 @@ describe('Volumes', function () {
it('cannot add duplicate name', function (done) {
volumes.add('music', '/media/music', AUDIT_SOURCE, function (error) {
console.dir(error);
expect(error.reason).to.be(BoxError.ALREADY_EXISTS);
done();
});
@@ -110,4 +111,4 @@ describe('Volumes', function () {
done();
});
});
});
});