Renamed to fit the scheme

This commit is contained in:
Niggl1999 2020-06-04 16:53:59 +02:00
parent ce4ba27653
commit 392ec801d4
3 changed files with 92 additions and 92 deletions

View File

@ -10,11 +10,11 @@ namespace ScrumTaskboard.Controllers
{
[Route("[controller]")]
[ApiController]
public class CategoryController : ControllerBase
public class CategoriesController : ControllerBase
{
private readonly TaskContext _context;
public CategoryController(TaskContext context)
public CategoriesController(TaskContext context)
{
_context = context;
}