TokenRefresh added Logout
[src/app-framework-demo.git] / afb-client / app / Frontend / etc / ConfigApp.js
index 22cf220..a6a0cad 100644 (file)
@@ -5,9 +5,7 @@
     angular.module('ConfigApp', [])
 
             // Factory is a singleton and share its context within all instances.
-            .factory('ConfigApp', function ($location, $window) {
-
-                // console.log ("URL="+ $location.url() + " Query=" + location.href+ " window=" + document.referrer);
+            .factory('ConfigApp', function (urlquery) {
 
                 var myConfig = {
                     paths: { // Warning paths should end with /
                         appli : 'images/appli/'
                     },
                     
-                    api: { // Warning paths should end with /
-                       token : '/api/token/'
+                    myapi: { // Warning paths should end with /
+                       token : '/api/myplugin/xxxx'
                     },
                     
                     session: { // Those data are updated by session service
+                       create  : '/api/token/create',
                        refresh : '/api/token/refresh',
+                       check   : '/api/token/check',
+                       reset   : '/api/token/reset',
                        ping    : '/api/token/check',
-                       initial : '123456789',  // typical dev initial token
+                       initial : urlquery.token || '123456789',  // typical dev initial token
                        timeout : 3600,         // timeout is updated client sessin context creation
                        pingrate: 60,           // Ping rate to check if server is still alive
                        uuid    : '',           // uuid map with cookie or long term session access key