Files
FHC-Core/public/js/api/stv/verband.js
T
2024-05-21 10:53:23 +02:00

15 lines
293 B
JavaScript

export default {
get() {
return this.$fhcApi.get('api/frontend/v1/stv/verband');
},
favorites: {
get() {
return this.$fhcApi.get('api/frontend/v1/stv/favorites');
},
set(favorites) {
return this.$fhcApi.post('api/frontend/v1/stv/favorites/set', {
favorites
});
}
}
}