mirror of https://gitee.com/bigwinds/arangodb
fixed issue #734: foxx cookie and route problem
This commit is contained in:
parent
87009c7e6e
commit
d0c05f6628
|
@ -1,10 +1,13 @@
|
||||||
v1.4.6 (XXXX-XX-XX)
|
v1.4.6 (XXXX-XX-XX)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
* fixed issue #734: foxx cookie and route problem
|
||||||
|
|
||||||
* added method `fm.configJson` for arangosh
|
* added method `fm.configJson` for arangosh
|
||||||
|
|
||||||
* include `startupPath` in result of API `/_api/foxx/config`
|
* include `startupPath` in result of API `/_api/foxx/config`
|
||||||
|
|
||||||
|
|
||||||
v1.4.5 (2014-01-15)
|
v1.4.5 (2014-01-15)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
@ -30,6 +33,7 @@ v1.4.5 (2014-01-15)
|
||||||
|
|
||||||
* added override file "arangod.conf.local" (and co)
|
* added override file "arangod.conf.local" (and co)
|
||||||
|
|
||||||
|
|
||||||
v1.4.4 (2013-12-24)
|
v1.4.4 (2013-12-24)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
|
|
@ -1017,7 +1017,7 @@ CookieAuthentication = function (applicationContext, options) {
|
||||||
this._options = {
|
this._options = {
|
||||||
name: options.name || this._applicationContext.name + "-session",
|
name: options.name || this._applicationContext.name + "-session",
|
||||||
lifetime: options.lifetime || 3600,
|
lifetime: options.lifetime || 3600,
|
||||||
path: options.path || this._applicationContext.mount,
|
path: options.path || "/",
|
||||||
domain: options.path || undefined,
|
domain: options.path || undefined,
|
||||||
secure: options.secure || false,
|
secure: options.secure || false,
|
||||||
httpOnly: options.httpOnly || false
|
httpOnly: options.httpOnly || false
|
||||||
|
|
Loading…
Reference in New Issue