ILostMyMedic / QuizOnTwitch

QuizOnTwitch is an interactive quiz platform designed specifically for Twitch streamers.
MIT License
2 stars 1 forks source link

Functionality for creating quizzes #16

Open ILostMyMedic opened 3 months ago

ILostMyMedic commented 3 months ago

The creation of quizzes involves 2 parts: The backend logic, found under ./server/src/service/quiz. and the frontend at ./client/src/pages/quiz/create.ts.

The first part of this task will be to introduce a backend endpoint, located at localhost:<port>/api/quiz/create. The second part will include designing and preparing the frontend data before it's sent off to the backend services.

Make sure to update any interfaces under ./server/src/interfaces/quiz.ts when updating the requests.

ILostMyMedic commented 3 months ago

The first part of this task (creating a backend endpoint) has been completed.