1
0
forked from PGL/Clyde
Clyde/frontend/src/rest/scheduleRest.js

18 lines
431 B
JavaScript

import {restGet,restPost,restPatch} from "@/rest/restConsumer.js";
export async function getAllSchedule(){
return restGet('/schedules');
}
export async function getOwnSchedule(){
return restGet('/schedule')
}
export async function createSchedule(curriculum) {
return restPost('/schedule',{curriculum : curriculum})
}
export async function getCurriculumSchedule(id){
return restGet('/schedule/curriculum/' + id)
}