mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-09 16:19:28 +00:00
17 lines
391 B
JavaScript
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');
|
|
}
|
|
}; |