Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
@Slf4j
@RestController
@RequiredArgsConstructor
@RequestMapping("/api")
public class AuthController {

private final UserJoiner userJoiner;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Tag(name = "아이 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("/children")
@RequestMapping("/api/children")
public class ChildController {

private final CommandChildService commandChildService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@Tag(name = "돌봄관계 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("/childRelations")
@RequestMapping("/api/childRelations")
public class ChildRelationController {

private final CommandChildRelationService commandChildRelationService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@Tag(name = "예보 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("/forecasts")
@RequestMapping("/api/forecasts")
public class ForecastController {

private final CommandForecastService commandForecastService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@Tag(name = "예보 기록 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("/forecastRecords")
@RequestMapping("/api/forecastRecords")
public class ForecastRecordController {

private final CommandForecastRecordService commandForecastRecordService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@Tag(name = "감정 통계 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("/statistics")
@RequestMapping("/api/statistics")
public class StatisticController {

private final QueryStatisticService queryStatisticService;
Expand Down
Loading