From: Fulup Ar Foll Date: Wed, 16 Dec 2015 23:47:38 +0000 (+0100) Subject: Cleanup X-Git-Tag: blowfish_2.0.1~1^2~26 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-demo.git;a=commitdiff_plain;h=5669aa501d13221bbbedb93b5358d3f8073310c7 Cleanup --- 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 } };