[front] zmiana stanu na zalogowany z frotnu na GO
This commit is contained in:
parent
542320f496
commit
bae651c4e3
@ -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
|
||||
@ -82,6 +81,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)
|
||||
|
||||
console.log("LOCAL STOARAGE: ", local)
|
||||
|
Loading…
Reference in New Issue
Block a user