Implements the possibility to ask for a scholarship for a student

This commit is contained in:
2024-04-09 15:58:10 +02:00
parent e6e147af26
commit 21a5dbdb22
6 changed files with 126 additions and 29 deletions

View File

@ -2,4 +2,8 @@ import {restPost} from "@/rest/restConsumer.js";
export async function createExemptionsRequest(exempReq){
return restPost("/exemptionreq", exempReq)
}
export async function createScholarshipRequest(scholReq){
return restPost("/scholarshipreq", scholReq)
}