-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Add category filter to bookmark list
- Loading branch information
Showing
10 changed files
with
52 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 12 additions & 1 deletion
13
...ava/com/dnd/spaced/domain/bookmark/presentation/dto/request/BookmarkConditionRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
package com.dnd.spaced.domain.bookmark.presentation.dto.request; | ||
|
||
public record BookmarkConditionRequest(Long lastBookmarkId) { | ||
import io.swagger.v3.oas.annotations.media.Schema; | ||
|
||
public record BookmarkConditionRequest( | ||
@Schema( | ||
description = "용어 카테고리", | ||
allowableValues = {"전체 실무", "디자인", "개발", "비즈니스"}, | ||
requiredMode = Schema.RequiredMode.NOT_REQUIRED | ||
) | ||
String category, | ||
|
||
@Schema(description = "마지막으로 조회한 북마크 Id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | ||
Long lastBookmarkId) { | ||
} |
9 changes: 8 additions & 1 deletion
9
...n/java/com/dnd/spaced/domain/bookmark/presentation/dto/response/BookmarkWordResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters