1
0
Fork 0

Documentation for sessions reflects correct sessions app path.

This commit is contained in:
Alan Plum 2014-06-25 17:00:59 +02:00
parent cb19215d85
commit 5767a12bcd
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ If *type* is set to *"cookie"*, the session cookie will be updated after every r
*Parameter* *Parameter*
* *options* (optional): an object with any of the following properties: * *options* (optional): an object with any of the following properties:
* *sessionStorageApp* (optional): mount point of the session storage app to use. Default: *"/_sessions"*. * *sessionStorageApp* (optional): mount point of the session storage app to use. Default: *"/system/sessions"*.
* *type* (optional): sessions type, currently only *"cookie"* is supported. Default: *"cookie"*. * *type* (optional): sessions type, currently only *"cookie"* is supported. Default: *"cookie"*.
* *cookieName* (optional): name of the session cookie if using cookie sessions. If a *cookieSecret* is provided, the signature will be stored in a cookie named *cookieName + "_sig"*. Defaults to *"sid"*. * *cookieName* (optional): name of the session cookie if using cookie sessions. If a *cookieSecret* is provided, the signature will be stored in a cookie named *cookieName + "_sig"*. Defaults to *"sid"*.
* *cookieSecret* (optional): secret string to sign session cookies with if using cookie sessions. * *cookieSecret* (optional): secret string to sign session cookies with if using cookie sessions.
@ -28,7 +28,7 @@ If *type* is set to *"cookie"*, the session cookie will be updated after every r
```js ```js
var controller = new FoxxController(applicationContext); var controller = new FoxxController(applicationContext);
controller.activateSessions({ controller.activateSessions({
sessionStorageApp: '/_sessions', sessionStorageApp: '/system/sessions',
cookieName: 'sid', cookieName: 'sid',
cookieSecret: 'secret', cookieSecret: 'secret',
type: 'cookie' type: 'cookie'