mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 04:39:28 +00:00
18 lines
374 B
JavaScript
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}`,{});
|
|
},
|
|
|
|
} |