2024-04-06 16:12:11 +02:00
|
|
|
import {restPost} from "@/rest/restConsumer.js";
|
|
|
|
|
|
|
|
export async function createExemptionsRequest(exempReq){
|
|
|
|
return restPost("/exemptionreq", exempReq)
|
2024-04-09 15:58:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function createScholarshipRequest(scholReq){
|
|
|
|
return restPost("/scholarshipreq", scholReq)
|
2024-04-06 16:12:11 +02:00
|
|
|
}
|