This commit is contained in:
2024-03-16 12:47:49 +01:00
parent ca6f676fb7
commit e84e34d735
2 changed files with 11 additions and 5 deletions

View File

@ -2,7 +2,7 @@
* curriculum API
*/
import { restGet, restPostn, restDelete, restPatch } from './restConsumer.js'
import { restGet, restPost, restDelete, restPatch } from './restConsumer.js'
/**
* Create a new curriculum (bundle of courses)
@ -19,6 +19,10 @@ export async function deletecurriculum(id){
return restDelete("/curriculum/" + id);
}
export async function getAllCurriculums(){
return restGet("/curriculum");
}
/**
* Get informations on a particular curriculum
*