Skip to content

Commit

Permalink
chore: API 주석 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
nlom0218 committed Oct 6, 2023
1 parent bd5a7c1 commit 4b60d93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/mocks/handlers/queryHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
} from '../mockData';

export const queryHandler = [
// 스터디 기록 페이지 조회
// 스터디 기록 페이지 조회 API
rest.get('/api/view/study-records', (req, res, ctx) => {
const requestAuthToken = req.headers.get('Authorization')?.split(' ')[1];

Expand Down Expand Up @@ -71,7 +71,7 @@ export const queryHandler = [
return res(ctx.status(200), ctx.json(studyList), ctx.delay(1000));
}),

// 달력 기반 스터디 기록 조회
// 달력 기반 스터디 기록 조회 API
rest.get('/api/view/calendar/study-records', (req, res, ctx) => {
const requestAuthToken = req.headers.get('Authorization')?.split(' ')[1];

Expand Down

0 comments on commit 4b60d93

Please sign in to comment.