mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-15 14:02:17 +00:00
15 lines
293 B
JavaScript
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
|
|
});
|
|
}
|
|
}
|
|
} |