Moodle-überprüfungs option für admins hinzugefügt

This commit is contained in:
PxlLoewe
2025-06-24 23:11:41 -07:00
parent d23ea67321
commit 86dcf15605
3 changed files with 113 additions and 37 deletions

View File

@@ -13,6 +13,11 @@ export const handleParticipantFinished = async (participantId: string) =>
participantId,
});
export const checkMoodleResults = async (participantId: string) =>
axios.post(`${process.env.NEXT_PUBLIC_HUB_SERVER_URL}/event/check-moodle-results`, {
participantId,
});
export const handleParticipantEnrolled = async (participantId: string) =>
axios.post(`${process.env.NEXT_PUBLIC_HUB_SERVER_URL}/event/handle-participant-enrolled`, {
participantId,