Explorar el Código

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

Kristian Vos hace 5 años
padre
commit
131df9859e
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  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")
 				}
 			});
 		}