1
0
Fork 0

fixed issue #734: foxx cookie and route problem

This commit is contained in:
Frank Celler 2014-01-16 14:16:47 +01:00
parent 87009c7e6e
commit d0c05f6628
2 changed files with 5 additions and 1 deletions

View File

@ -1,10 +1,13 @@
v1.4.6 (XXXX-XX-XX)
-------------------
* fixed issue #734: foxx cookie and route problem
* added method `fm.configJson` for arangosh
* include `startupPath` in result of API `/_api/foxx/config`
v1.4.5 (2014-01-15)
-------------------
@ -30,6 +33,7 @@ v1.4.5 (2014-01-15)
* added override file "arangod.conf.local" (and co)
v1.4.4 (2013-12-24)
-------------------

2
js/server/modules/org/arangodb/foxx/authentication.js Normal file → Executable file
View File

@ -1017,7 +1017,7 @@ CookieAuthentication = function (applicationContext, options) {
this._options = {
name: options.name || this._applicationContext.name + "-session",
lifetime: options.lifetime || 3600,
path: options.path || this._applicationContext.mount,
path: options.path || "/",
domain: options.path || undefined,
secure: options.secure || false,
httpOnly: options.httpOnly || false