Initial Commit

This commit is contained in:
DOMINIK SCHRADER
2025-12-01 11:32:31 +01:00
commit 3b8e5c2b09
5 changed files with 1602 additions and 0 deletions

15
js/config.js Normal file
View File

@@ -0,0 +1,15 @@
const API_CONFIG = {
baseUrl: 'http://127.0.0.1:8000',
endpoints: {
kurse: '/api/kurse',
betriebe: '/api/betriebe',
anmeldung: '/api/anmeldung',
berichtBetrieb: '/api/berichte/teilnehmer-pro-betrieb',
berichtKurs: '/api/berichte/teilnehmer-pro-kurs',
rechnung: '/api/rechnungen/betrieb/',
login: '/api/auth/login',
logout: '/api/auth/logout',
me: '/api/auth/me',
},
};