Add the Teacher approval for reregister requests

This commit is contained in:
2024-04-19 15:53:31 +02:00
parent 25575fa4e0
commit 69fb4e881e
7 changed files with 91 additions and 106 deletions

View File

@ -62,4 +62,8 @@ export async function getChangeCurrReqById(id){
export async function editChangeCurrReq(id, newState){
return restPatch("/changecurriculumreq/"+id+"/"+newState)
}
export async function editChangeCurrReqTeacherState(id, newState){
return restPatch("/changecurriculumreqteacher/"+id+"/"+newState)
}