File tree Expand file tree Collapse file tree
backend/src/main/java/com/but/rebloom/domain/channel/controller Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,14 +49,7 @@ public ResponseEntity<ApiResponse<GetUserChannelInfoResponse>> getChannelUser(@P
4949 return ResponseEntity .ok (ApiResponse .success (GetUserChannelInfoResponse .from (userChannels )));
5050 }
5151
52- // 일반 사용자용 채널 목록 조회 (승인된 채널)
53- @ GetMapping ("/find/all" )
54- public ResponseEntity <ApiResponse <FindChannelResponse >> getAllChannels () {
55- List <Channel > responses = channelUseCase .getAllApprovedChannels ();
56- return ResponseEntity .ok (ApiResponse .success (FindChannelResponse .from (responses )));
57- }
58-
59- // 승인된 채널 목록 조회 (관리자용)
52+ // 승인된 채널 목록 조회
6053 @ GetMapping ("/admin/find/approve" )
6154 public ResponseEntity <ApiResponse <FindChannelResponse >> getApprovedChannels () {
6255 List <Channel > responses = channelUseCase .getApprovedChannels ();
You can’t perform that action at this time.
0 commit comments