Skip to content
Snippets Groups Projects
Commit f48e34bf authored by Wo-ogie's avatar Wo-ogie
Browse files

refactor: 미팅 관련 API 인증 권한 검증 로직 제거

parent 2d2f7dc2
No related branches found
No related tags found
No related merge requests found
const express = require('express');
const { isAuthenticated } = require('../middlewares/auth');
const {
createMeeting,
entry,
......@@ -18,12 +17,12 @@ router.get('/top-three-confirmed-times', getTopThreeConfirmedTimes);
router.post('/:meetingId/entry', entry);
router.get('/:meetingId', isAuthenticated, getMeetingById);
router.get('/:meetingId', getMeetingById);
router.get('/:meetingId/details', isAuthenticated, getMeetingDetailById);
router.get('/:meetingId/details', getMeetingDetailById);
router.patch('/:meetingId/close', isAuthenticated, closeMeeting);
router.patch('/:meetingId/close', closeMeeting);
router.patch('/:meetingId/confirm-time', isAuthenticated, confirmTime);
router.patch('/:meetingId/confirm-time', confirmTime);
module.exports = router;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment