daily-code
daily-code copied to clipboard
Feat:Admin MCQs
Added Admin page to Add MCQs to Problems.
https://github.com/code100x/daily-code/assets/136337515/7b1a1c92-33c3-4853-bd22-1edc7678755f
Checklist before requesting a review
- [x] I assure there is no similar/duplicate pull request regarding same issue
- [x] I have performed a self-review of my code
same issue
Hey @ShubhamMewara , I have reviewed your PR and the implementation is really good. There are a few things I found that could be improved, would be great if you go over them once.
@Kartik1110 Thank you for review.
/bounty $60
const express = require('express'); const router = express.Router(); const mcqController = require('../controllers/mcqController');
router.post('/add', mcqController.addMCQ);
module.exports = router;