mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-14 18:49:28 +00:00
8 lines
246 B
JavaScript
8 lines
246 B
JavaScript
export default {
|
|
getGruppen(url, config, params) {
|
|
return this.$fhcApi.get('api/frontend/v1/stv/Gruppen/getGruppen/' + params.id);
|
|
},
|
|
deleteGroup(params) {
|
|
return this.$fhcApi.post('api/frontend/v1/stv/Gruppen/deleteGruppe/', params);
|
|
}
|
|
} |