Skip to content

Commit

Permalink
fix - #74 병합 시 빌드 안되는 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
kseysh committed Jan 18, 2024
1 parent 8a08411 commit 6b96545
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import sopt.org.HMH.global.common.response.ApiResponse;
import sopt.org.HMH.global.common.response.BaseResponse;

@RestController
@RequiredArgsConstructor
@RequestMapping("/api/v1/dummy")
@Deprecated
public class DummyAppController {
@GetMapping("/app")
public ResponseEntity<ApiResponse<?>> orderModifyDailyChallenge() {
public ResponseEntity<BaseResponse<?>> orderModifyDailyChallenge() {
return ResponseEntity
.status(DummyAppSuccess.GET_DUMMY_SUCCESS.getHttpStatus())
.body(ApiResponse.success(DummyAppSuccess.GET_DUMMY_SUCCESS, DummyAppListResponse.of()));
.body(BaseResponse.success(DummyAppSuccess.GET_DUMMY_SUCCESS, DummyAppListResponse.of()));
}
}

0 comments on commit 6b96545

Please sign in to comment.