partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit e1bfe67f169906976849681d29125328a4061960
parent 2b62175583e4453ac59e6bd661f82c436fd2cdbb
Author: Felicitus <felicitus@felicitus.org>
Date:   Tue, 15 Sep 2015 19:51:11 +0200

Send the WSSE header when calling an action

Diffstat:
Msrc/PartKeepr/FrontendBundle/Resources/public/js/Data/HydraProxy.js | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/PartKeepr/FrontendBundle/Resources/public/js/Data/HydraProxy.js b/src/PartKeepr/FrontendBundle/Resources/public/js/Data/HydraProxy.js @@ -88,6 +88,8 @@ Ext.define("PartKeepr.data.HydraProxy", { request.setParams(parameters); } + request.setHeaders(this.getHeaders()); + request.setCallback(function (options, success, response) { this.processCallActionResponse(options, success, response); @@ -110,4 +112,4 @@ Ext.define("PartKeepr.data.HydraProxy", { showException: function (response) { PartKeepr.ExceptionWindow.showException(response); } -});- \ No newline at end of file +});