Files
FHC-Core/public/js/api/stv.js
T
2024-06-12 15:06:43 +02:00

17 lines
391 B
JavaScript

import verband from './stv/verband.js';
import students from './stv/students.js';
import filter from './stv/filter.js';
import konto from './stv/konto.js';
export default {
verband,
students,
filter,
konto,
configStudent() {
return this.$fhcApi.get('api/frontend/v1/stv/config/student');
},
configStudents() {
return this.$fhcApi.get('api/frontend/v1/stv/config/students');
}
};