Files
SimonGschnell d4e33eb1df refactor
2024-08-01 15:04:18 +02:00

18 lines
374 B
JavaScript

export default {
open: function () {
return this.$fhcApi.get(
`/api/frontend/v1/Ampeln/open`,{});
},
all: function () {
return this.$fhcApi.get(
`/api/frontend/v1/Ampeln/all`,{});
},
confirm: function (ampel_id) {
return this.$fhcApi.get(
`/api/frontend/v1/Ampeln/confirm/${ampel_id}`,{});
},
}