1
0
Fork 0

fixed teardown

This commit is contained in:
Frank Celler 2013-07-26 15:16:50 +02:00
parent 52af46542e
commit 780ae83d58
2 changed files with 4 additions and 1 deletions

View File

@ -737,7 +737,7 @@ exports.unmount = function (key) {
var res = arango.POST("/_admin/foxx/unmount", JSON.stringify(req));
arangosh.checkRequestResult(res);
return { appdId: res.appId, mount: res.mount, collectionPrefix: res.collectionPrefix };
return { appId: res.appId, mount: res.mount, collectionPrefix: res.collectionPrefix };
};
////////////////////////////////////////////////////////////////////////////////

View File

@ -427,6 +427,9 @@ function routingAalApp (app, mount, prefix, dev) {
collectionPrefix: prefix, // collection prefix
appModule: app.createAppModule(), // app module
isDevelopment: devel,
isProduction: ! devel,
routingInfo: {},
foxxes: []
};