changeset 249:e0f47d9ebde0

Hotfix: changed login call back to GET from POST. For some reason POST didn't work as intended: the credentials were not send... This is only a workaround, as POST would still be the right way to go...
author Sascha Wilde <wilde@intevation.de>
date Fri, 27 Jul 2018 11:04:20 +0200
parents 21cf31a7d9e1
children 63e17e017f09
files client/src/stores/user.js
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/stores/user.js	Thu Jul 26 20:06:45 2018 +0200
+++ b/client/src/stores/user.js	Fri Jul 27 11:04:20 2018 +0200
@@ -57,7 +57,7 @@
   actions: {
     login({ commit }, user) {
       return new Promise((resolve, reject) => {
-        HTTP.post("/login", { params: user })
+        HTTP.get("/login", { params: user })
           .then(response => {
             commit("auth_success", response.data);
             resolve(response);