diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-17 00:47:38 +0100 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-17 00:47:38 +0100 |
commit | 5669aa501d13221bbbedb93b5358d3f8073310c7 (patch) | |
tree | 832f7ce58eaa4ade90f78533ee7703accbfd224c /afb-client/app/Frontend/pages/Home/HomeModule.js | |
parent | 98522d2a6ce7c7a709728872ed892970d0a1df7b (diff) |
Cleanup
Diffstat (limited to 'afb-client/app/Frontend/pages/Home/HomeModule.js')
-rw-r--r-- | afb-client/app/Frontend/pages/Home/HomeModule.js | 2 |
1 files changed, 1 insertions, 1 deletions
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); |