Skip to content

Commit 494aaa4

Browse files
authored
Merge pull request #321 from twalla26/refactor/question-list
[Refactor] 로그인 유무에 따른 에러 처리와 응답 반환
2 parents d3cbdc0 + ff854b2 commit 494aaa4

5 files changed

Lines changed: 225 additions & 82 deletions

File tree

backend/src/question-list/dto/get-all-question-list.dto.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ export interface GetAllQuestionListDto {
44
categoryNames: string[];
55
usage: number;
66
questionCount: number;
7+
isScrap: boolean;
78
}

backend/src/question-list/dto/question-list-contents.dto.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ export interface QuestionListContentsDto {
77
contents: Question[];
88
usage: number;
99
username: string;
10+
isScrap: boolean;
11+
scrapCount: number;
1012
}

0 commit comments

Comments
 (0)