Files
FHC-Core/public/js/api/stv.js
T
2024-04-29 11:40:46 +02:00

13 lines
288 B
JavaScript

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