-
Notifications
You must be signed in to change notification settings - Fork 11
Description
Backend for saving and providing the details of new and past contests by the admin.
GET,POST,PUT,DELETE routes will be used in all specific pages
/mycontest->for all the contests created by the admin
/mycontest/new->to create a new contest
/mycontest/{contestid}->to render the specific contest
/mycontest/{contestid}/basicinfo->for the basic info of that contest
/mycontest/{contestid}/adminrights->for the admin rights of that contest
/mycontest/{contestid}/questions->for all the questions of that contest
/mycontest/{contestid}/questions/{questionid}->for a particular question of that contest
DB schema will contain all fields for every specific page along with respective unique id i.e. every contest will also have user id,a unique contest id,the basic info of that contest will be having already mentioned unique ids of user and contest and will also have a basic info id and so for the others
Rest issues will be updated further.