feat: course creation/del + file upload

This commit is contained in:
swve 2022-10-15 16:55:19 +02:00
parent 9a8e4e4492
commit c838b7e9cd
9 changed files with 151 additions and 21 deletions

View file

@ -1,3 +1,6 @@
const LEARNHOUSE_API_URL = "http://localhost:1338/api/";
const LEARNHOUSE_BACKEND_URL = "http://localhost:1338/";
export const getAPIUrl = () => LEARNHOUSE_API_URL;
export const getBackendUrl = () => LEARNHOUSE_BACKEND_URL;