Skip to content

Commit

Permalink
Merge pull request #53 from dongkyun0713/dongkyun
Browse files Browse the repository at this point in the history
deploy test
  • Loading branch information
dongkyun0713 authored Feb 13, 2024
2 parents 2c17ce5 + 950c40c commit 067afd5
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
package com.example.titto_backend.matchingBoard.controller;

import com.example.titto_backend.matchingBoard.dto.request.MatchingPostRequest.MatchingPostPagingRequestDto;
import com.example.titto_backend.matchingBoard.dto.response.matchingPostResponse.MatchingPostPagingResponseDto;
import com.example.titto_backend.matchingBoard.service.matchingBoard.MatchingBoardService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

Expand All @@ -10,7 +16,7 @@
@RequiredArgsConstructor
@Tag(name = "Matching Board Controller", description = "맀칭 κ²Œμ‹œνŒ κ΄€λ ¨ API")
public class MatchingBoardController {
/* private final MatchingBoardService matchingBoardService;
private final MatchingBoardService matchingBoardService;

@GetMapping("/posts")
@Operation(
Expand All @@ -23,5 +29,5 @@ public class MatchingBoardController {
})
public MatchingPostPagingResponseDto getAllMatchingPosts(MatchingPostPagingRequestDto matchingPostPagingRequestDto) {
return matchingBoardService.findAllPosts(matchingPostPagingRequestDto);
}*/
}
}

0 comments on commit 067afd5

Please sign in to comment.