From 5669aa501d13221bbbedb93b5358d3f8073310c7 Mon Sep 17 00:00:00 2001 From: Fulup Ar Foll Date: Thu, 17 Dec 2015 00:47:38 +0100 Subject: [PATCH] Cleanup --- afb-client/app/Frontend/pages/Home/Home.html | 4 ++-- afb-client/app/Frontend/pages/Home/HomeModule.js | 2 +- afb-client/app/Frontend/services/ConfigApp.js | 5 +++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/afb-client/app/Frontend/pages/Home/Home.html b/afb-client/app/Frontend/pages/Home/Home.html index 6eda66d..69c4dbe 100644 --- a/afb-client/app/Frontend/pages/Home/Home.html +++ b/afb-client/app/Frontend/pages/Home/Home.html @@ -11,8 +11,8 @@ animationIn: slideInRight App Framework Binder Simple Client - - +
diff --git a/afb-client/app/Frontend/pages/Home/HomeModule.js b/afb-client/app/Frontend/pages/Home/HomeModule.js index ba6c5ea..30e796e 100644 --- a/afb-client/app/Frontend/pages/Home/HomeModule.js +++ b/afb-client/app/Frontend/pages/Home/HomeModule.js @@ -56,7 +56,7 @@ angular.module('HomeModule', ['SubmitButton', 'TokenRefresh']) scope.OpenSession = function() { console.log ("OpenSession"); var postdata= {/* any json your application may need */}; - var handler = $http.post(ConfigApp.api.token + 'create?token='+ConfigApp.session.token, postdata); + var handler = $http.post(ConfigApp.api.token + 'create?token='+ConfigApp.session.initial, postdata); handler.success(scope.ProcessResponse); handler.error(scope.ProcessError); diff --git a/afb-client/app/Frontend/services/ConfigApp.js b/afb-client/app/Frontend/services/ConfigApp.js index adec5ac..310ef88 100644 --- a/afb-client/app/Frontend/services/ConfigApp.js +++ b/afb-client/app/Frontend/services/ConfigApp.js @@ -21,10 +21,11 @@ session: { // Those data are updated by session service refresh : '/api/token/refresh', ping : '/api/token/check', - token : '123456789', // typical dev initial token + initial : '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 - pingrate: 60 // Ping rate to check if server is still alive + token : '' // will be returned from authentication } }; -- 2.16.6