NCP-3 add UserContent entity #5

Merged
backdev merged 29 commits from NCP-3 into dev 2025-12-05 17:58:17 +08:00
3 changed files with 4 additions and 4 deletions
Showing only changes of commit 182de806a8 - Show all commits
@@ -17,7 +17,7 @@ import java.util.Map;
import java.util.Optional;
@RestController
@RequestMapping("/api/auth")
@RequestMapping("v1/api/auth")
@RequiredArgsConstructor
public class AuthController {
@@ -4,8 +4,8 @@ import lombok.AllArgsConstructor;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController("api/content")
@RequestMapping("api/content")
@RestController
@RequestMapping("v1/api/content")
@AllArgsConstructor
public class UserContentController {
}
@@ -19,7 +19,7 @@ import java.util.List;
import java.util.Optional;
@RestController
@RequestMapping("/api/user")
@RequestMapping("v1/api/user")
@RequiredArgsConstructor
public class UserController {