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 @@ -21,7 +21,7 @@
@Tag(name = "Auth", description = "인증 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("/api/auth")
@RequestMapping("/auth")
public class AuthController implements AuthSpecification {
private final UserCommandService userCommandService;
private final AuthService authService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@Tag(name = "Bookmark", description = "북마크 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("/api/bookmark")
@RequestMapping("/bookmark")
public class BookmarkController implements BookmarkSpecification {

private final BookmarkCommandService bookmarkCommandService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
@Tag(name = "Crawler", description = "크롤링 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("/api/crawler")
@RequestMapping("/crawler")
public class CrawlingController implements CrawlingSpecification {

private final CrawlingService crawlingService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@Tag(name = "User", description = "사용자 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("/api/users")
@RequestMapping("/users")
public class UserController implements UserSpecification {

private final UserCommandService userCommandService;
Expand Down