diff --git a/frontend/app/src/views/Login.vue b/frontend/app/src/views/Login.vue index da47793..e0bf1a4 100644 --- a/frontend/app/src/views/Login.vue +++ b/frontend/app/src/views/Login.vue @@ -64,7 +64,6 @@ export default { if (this.$refs.form.validate()){ //valinnaj JS axios.post("http://127.0.0.1:3000/api/loginUserView" , - {"login": this.userLogin, "password": this.userPassword, "TokenZJS": "Ala"}, { crossdomain: true }) .then(response=>{ console.log("Response data: ", response.data); //printuje Tokena @@ -81,6 +80,14 @@ export default { //dodanie loginu do listy wszystkich zalogowanych użytkowników this.$store.dispatch('addLoggedUser', localStorage.getItem('user')) + + axios.post("http://127.0.0.1:3000/api/updateLoggedUserView", {"login": this.userLogin} , //aktualizacja stanu uzytkownika w bazie mysql + { crossdomain: true }) + .then(response=>{ + console.log("Aktualizowanie stanu uzytkownika w mysql ", response.data); //printuje Tokena + }).catch(error=>{ + console.log("ERROR: ", error.response.data) + }); console.log("Wszyscy uzytkownicy: ", this.$store.getters.allUsers)