diff --git a/.idea/modules.xml b/.idea/modules.xml
deleted file mode 100644
index 10545f2..0000000
--- a/.idea/modules.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/frontend/src/pages/Profile.vue b/frontend/src/pages/Profile.vue
index 386706e..f22177b 100644
--- a/frontend/src/pages/Profile.vue
+++ b/frontend/src/pages/Profile.vue
@@ -1,20 +1,20 @@
-
+
-
-
-
-
-
+
+
+
+
+
@@ -129,23 +129,7 @@
this.startedCaches = response.data;
});
},
- startCache(cacheID) {
- const userToken = JSON.parse(localStorage.getItem('userToken'));
- let params = {cacheID: cacheID};
- if (userToken != null) {
- params.token = userToken;
- }
- console.log(params);
-
- this.$axios.get('http://localhost:8080/api/startCache', {params})
- .then((response) => {
- console.log(response.data);
- // TODO wenn cache angefangen, dann suche die letzte gefundene Station
- let stationID = this.caches.find(x => x.id === cacheID).stationen[0].id;
- console.log(stationID);
- //this.$router.push({path: `/station/${stationID}`})
- this.$router.push({path: `/station/${cacheID}/${stationID}`})
- })
+ continueCache(cacheID) {
}
}
}