1
0
Fork 0

Documentation now reflects correct bundled app paths.

This commit is contained in:
Alan Plum 2014-06-25 16:55:58 +02:00
parent 7bfb6d5d3f
commit cb19215d85
4 changed files with 4 additions and 4 deletions

View File

@ -47,7 +47,7 @@ If you want to use the *google* provider, you need to obtain a client ID and cli
This app exposes its functionality via a JavaScript API named *providers*. This app exposes its functionality via a JavaScript API named *providers*.
```js ```js
var providers = Foxx.requireApp('/_oauth2').providers; var providers = Foxx.requireApp('/system/oauth2').providers;
``` ```
!SUBSECTION Exceptions !SUBSECTION Exceptions

View File

@ -18,7 +18,7 @@ This app exposes a session storage via a JavaScript API named *sessionStorage*.
@EXAMPLES @EXAMPLES
```js ```js
var sessionStorage = Foxx.requireApp('/_sessions').sessionStorage; var sessionStorage = Foxx.requireApp('/system/sessions').sessionStorage;
``` ```
!SUBSECTION Exceptions !SUBSECTION Exceptions

View File

@ -16,7 +16,7 @@ This app exposes its functionality via a JavaScript API named *auth*.
@EXAMPLES @EXAMPLES
```js ```js
var auth = Foxx.requireApp('/_auth').auth; var auth = Foxx.requireApp('/system/simple-auth').auth;
``` ```
!SUBSECTION Generate an authentication object !SUBSECTION Generate an authentication object

View File

@ -9,7 +9,7 @@ This app exposes a user storage via a JavaScript API named *userStorage*.
@EXAMPLES @EXAMPLES
```js ```js
var userStorage = Foxx.requireApp('/_users').userStorage; var userStorage = Foxx.requireApp('/system/users').userStorage;
``` ```
!SUBSECTION Exceptions !SUBSECTION Exceptions