Skip to content

Commit

Permalink
[Feat]: api 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
bayy1216 committed May 30, 2024
1 parent a810bb8 commit 2d81c0e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import org.haedal.zzansuni.controller.PagingRequest;
import org.haedal.zzansuni.controller.PagingResponse;
import org.haedal.zzansuni.core.api.ApiResponse;
import org.haedal.zzansuni.domain.challenge.ChallengeCategory;
import org.haedal.zzansuni.global.jwt.JwtUser;
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.GetMapping;
Expand All @@ -22,7 +23,8 @@ public class ChallengeController {
@Operation(summary = "챌린지 목록 조회", description = "챌린지 목록 페이징 조회한다.")
@GetMapping("/api/challenges")
public ApiResponse<PagingResponse<ChallengeRes.ChallengeDto>> getChallengesPaging(
@Valid PagingRequest pagingRequest
@Valid PagingRequest pagingRequest,
@RequestParam ChallengeCategory category
) {
throw new RuntimeException("Not implemented");
}
Expand Down

0 comments on commit 2d81c0e

Please sign in to comment.