Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feat/disaster-tab' into dev-check
Browse files Browse the repository at this point in the history
  • Loading branch information
versatile0010 committed Nov 22, 2023
2 parents b1697e2 + 1fe1af5 commit 05355b9
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Slice;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;

import java.util.List;

Expand All @@ -36,7 +33,7 @@ public class NotificationController {
@GetMapping
public ResponseEntity<Slice<NotificationTabResponse>> getNotificationPage(
Pageable pageable,
@ModelAttribute NotificationSearchParameter param){
@RequestBody NotificationSearchParameter param){
return ResponseEntity.ok(notificationService.getNotificationTabPagesByMember(param, pageable));
}

Expand Down

0 comments on commit 05355b9

Please sign in to comment.