Skip to content

Commit

Permalink
[CHORE] 메소드명 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Chan531 committed Jul 22, 2024
1 parent d3a13cd commit b2b2c40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class MakerController implements MakerControllerDocs {
@GetMapping
@ResponseStatus(HttpStatus.OK)
public SuccessResponse<MakerListAcquireResponse> acquireAll() {
val response = makerService.acquireAllTheme();
val response = makerService.acquireAll();
return success(SUCCESS_GET_MAKER_THEME.getMessage(), MakerListAcquireResponse.from(response));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class MakerService {

private final MakerFinder makerFinder;

public MakerListAcquireServiceResponse acquireAllTheme() {
public MakerListAcquireServiceResponse acquireAll() {
List<Maker> makers = makerFinder.findAll();
return MakerListAcquireServiceResponse.from(makers);
}
Expand Down

0 comments on commit b2b2c40

Please sign in to comment.