Skip to content

Commit

Permalink
πŸ“ docs: aPI Docs ν•¨μˆ˜ 이름 λ³€κ²½
Browse files Browse the repository at this point in the history
  • Loading branch information
Jo-Minseok committed Jan 1, 2025
1 parent 9d0b06e commit 9cda048
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
ApiQuery,
} from '@nestjs/swagger';

export function ApiReadFeedList() {
export function ApiReadFeedPagination() {
return applyDecorators(
ApiOperation({
summary: `메인 ν™”λ©΄ κ²Œμ‹œκΈ€ 쑰회 API`,
Expand Down Expand Up @@ -49,6 +49,7 @@ export function ApiReadFeedList() {
createAt: { type: 'string', format: 'date-time' },
thumbnail: { type: 'string', format: 'url' },
viewCount: { type: 'number' },
isNew: { type: 'boolean' },
},
},
},
Expand All @@ -71,6 +72,7 @@ export function ApiReadFeedList() {
createAt: '2024-06-16T20:00:57.000Z',
thumbnail: 'https://test.com/image.png',
viewCount: 1,
isNew: false,
},
],
lastId: 3,
Expand Down

0 comments on commit 9cda048

Please sign in to comment.