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 @@ -14,7 +14,7 @@

@RestController
@RequiredArgsConstructor
@RequestMapping("")
@RequestMapping("/api")
public class AddressController {

private final AddressService addressService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

@RestController
@RequiredArgsConstructor
@RequestMapping("/")
@RequestMapping("/api")
public class AuthController {

private final AuthService authService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

@RestController
@RequiredArgsConstructor
@RequestMapping("/letter")
@RequestMapping("/api/letter")
public class LetterController {

private final LetterService letterService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@
import org.springframework.data.domain.Pageable;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequiredArgsConstructor
@RequestMapping("/api")
public class MainPageController {

private final MainPageService mainPageService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

@RestController
@RequiredArgsConstructor
@RequestMapping("/news")
@RequestMapping("/api/news")
public class NewsController {

private final NewsService newsService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

@RestController
@RequiredArgsConstructor
@RequestMapping("")
@RequestMapping("/api")
public class NoticeController {

private final NoticeService noticeService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

@RestController
@RequiredArgsConstructor
@RequestMapping("")
@RequestMapping("/api")
public class OAuthController {

private final OAuthService oAuthService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

@RestController
@RequiredArgsConstructor
@RequestMapping("/sharing")
@RequestMapping("/api/sharing")
public class SharingController {

private final SharingService sharingService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

@RestController
@RequiredArgsConstructor
@RequestMapping("/")
@RequestMapping("/api")
public class TestController {
@GetMapping("/test")
public String test(@RequestParam String code) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

@RestController
@RequiredArgsConstructor
@RequestMapping("/user")
@RequestMapping("/api/user")
public class UserController {

private final UserService userService;
Expand Down