diff --git a/LFlow.Home/Controllers/HomeControl.cs b/LFlow.Home/Controllers/HomeControl.cs index 2f1787b..04d924a 100644 --- a/LFlow.Home/Controllers/HomeControl.cs +++ b/LFlow.Home/Controllers/HomeControl.cs @@ -6,7 +6,7 @@ using Microsoft.AspNetCore.Mvc; namespace LFlow.Home.Controllers; public class HomeController(IHomeService service) : BaseController { - [HttpGet("/[controller]/")] + [HttpGet] public string Home(string id) { return service?.GetById(id)?.ToString() ?? "No service";