refactor: Update TodoController base request mapping from /todos to /api/todos.
All checks were successful
Build and Push Docker Images / build-and-push (push) Successful in 1m26s

This commit is contained in:
almazlar
2026-02-21 00:22:24 +03:00
parent d118222147
commit e8be570c09

View File

@@ -11,7 +11,7 @@ import java.util.List;
import java.util.Optional;
@RestController
@RequestMapping("/todos")
@RequestMapping("/api/todos")
public class TodoController {
private final TodoService todoService;