- Rework the inscription requests system so that it considers the equivalence systems and the impact of the teacher in the inscription procedure.
21 lines
589 B
JavaScript
21 lines
589 B
JavaScript
import {restGet, restPatch, restPost} from "@/rest/restConsumer.js";
|
|
|
|
export async function createExemptionsRequest(exempReq){
|
|
return restPost("/exemptionreq", exempReq)
|
|
}
|
|
|
|
export async function createScholarshipRequest(reqInfo){
|
|
return restPost("/scholarshipreq", reqInfo)
|
|
}
|
|
|
|
export async function getAllScholarShipsRequest(){
|
|
return restGet("/scholarshipreq")
|
|
}
|
|
|
|
export async function getAllExemptionsRequest(){
|
|
return restGet("/exemptionsreq")
|
|
}
|
|
|
|
export async function editEquivalenceState(id, newstate){
|
|
return restPatch("/request/registerequiv/"+id+"/"+newstate)
|
|
} |