Bladeren bron

refactor: when adding/editing an account, you get redirected to accounts page

Kristian Vos 5 jaren geleden
bovenliggende
commit
131df9859e
2 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 1 1
      frontend/vue/pages/AddAccount.vue
  2. 1 1
      frontend/vue/pages/EditAccount.vue

+ 1 - 1
frontend/vue/pages/AddAccount.vue

@@ -24,7 +24,7 @@ export default {
 			this.socket.emit("account.add", account, (res) => {
 				console.log(res);
 				if (res.status === "success") {
-					this.$router.push("/")
+					this.$router.push("/accounts")
 				}
 			});
 		}

+ 1 - 1
frontend/vue/pages/EditAccount.vue

@@ -25,7 +25,7 @@ export default {
 			this.socket.emit("account.editById", account._id, account, (res) => {
 				console.log(res);
 				if (res.status === "success") {
-					this.$router.push("/")
+					this.$router.push("/accounts")
 				}
 			});
 		}