First full release

This commit is contained in:
Luka Romih
2023-03-10 12:50:23 +01:00
parent 257f3c354f
commit 9867875ef2
285 changed files with 10980 additions and 4692 deletions
+8 -5
View File
@@ -17,19 +17,22 @@ const {
sendToReview,
publish,
updateQuestion,
updateSharedAuthors
updateSharedAuthors,
sendPaginationData
} = require('../../../controllers/api/v1/consultancy')
router.get('/entry-pagination', sendPaginationData)
router.get('/entry', listEntries)
router.get('/new-entry', listNewEntries)
// All routes require an authenticated user.
router.use((req, res, next) => {
if (req.isAuthenticated()) return next()
res.status(400).send('Unauthenticated')
})
router.get('/entry', listEntries)
router.get('/new-entry', listNewEntries)
router.post('/entry', createQuestion)
router.put('/entry', updateQuestion)