mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-04 05:39:28 +00:00
16 lines
350 B
JavaScript
16 lines
350 B
JavaScript
export default {
|
|
studiengangInformation: function () {
|
|
return this.$fhcApi.get(
|
|
"/api/frontend/v1/Studgang/getStudiengangInfo",
|
|
{}
|
|
);
|
|
},
|
|
getStudiengangByKz: function (studiengang_kz) {
|
|
return this.$fhcApi.get(
|
|
"/api/frontend/v1/organisation/StudiengangEP/getStudiengangByKz",
|
|
{
|
|
"studiengang_kz": studiengang_kz
|
|
}
|
|
);
|
|
}
|
|
} |