Merge branch 'master' into feature/api-explorer

This commit is contained in:
Niggl1999 2020-06-04 16:55:52 +02:00
commit e36ddb137b
2 changed files with 74 additions and 74 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;
}