Skip to content

Commit

Permalink
fix: *Controller api 주소 수정 #35
Browse files Browse the repository at this point in the history
  • Loading branch information
SubiHwang committed Jan 26, 2024
1 parent 2f8ab87 commit d441157
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@RestController
@RequiredArgsConstructor
@Tag(name = "Accessory", description = "액세서리 관련 API")
@RequestMapping("api/accessories")
@RequestMapping("/api/accessories")
public class AccessoryController {
private final AccessoryService accessoryService;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@RestController
@RequiredArgsConstructor
@Tag(name = "Color", description = "색상 관련 API")
@RequestMapping("api/colors")
@RequestMapping("/api/colors")
public class ColorController {
private final ColorService colorService;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@RestController
@RequiredArgsConstructor
@Tag(name = "Font", description = "폰트 관련 API")
@RequestMapping("api/fonts")
@RequestMapping("/api/fonts")
public class FontController {
private final FontService fontService;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@RestController
@RequiredArgsConstructor
@Tag(name = "Pattern", description = "패턴 관련 API")
@RequestMapping("api/patterns")
@RequestMapping("/api/patterns")
public class PatternController {
private final PatternService patternService;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@RestController
@RequiredArgsConstructor
@Tag(name = "Wheel", description = "휠 모양 관련 API")
@RequestMapping("api/wheels")
@RequestMapping("/api/wheels")
public class WheelController {
private final WheelService wheelService;

Expand Down

0 comments on commit d441157

Please sign in to comment.