new Tab Gruppen

This commit is contained in:
ma0068
2025-02-04 14:49:41 +01:00
parent ecbc1c8d09
commit 7fbff20dd9
9 changed files with 381 additions and 1 deletions
+2
View File
@@ -2,12 +2,14 @@ import verband from './stv/verband.js';
import students from './stv/students.js';
import filter from './stv/filter.js';
import konto from './stv/konto.js';
import group from './stv/group.js';
export default {
verband,
students,
filter,
konto,
group,
configStudent() {
return this.$fhcApi.get('api/frontend/v1/stv/config/student');
},
+8
View File
@@ -0,0 +1,8 @@
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);
}
}