Changed naming
This commit is contained in:
30
ScrumTaskboard/Controllers/UserstoriesController.cs
Normal file
30
ScrumTaskboard/Controllers/UserstoriesController.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using ScrumTaskboard;
|
||||
|
||||
namespace ScrumTaskboard.Controllers
|
||||
{
|
||||
[Route("[controller]")]
|
||||
[ApiController]
|
||||
public class UserstoriesController : ControllerBase
|
||||
{
|
||||
private readonly TaskContext _context;
|
||||
|
||||
public UserstoriesController(TaskContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: api/Tasks
|
||||
[HttpGet]
|
||||
public async Task<ActionResult<IEnumerable<ScrumUserstory>>> GetUserstory()
|
||||
{
|
||||
return await _context.Userstories.ToListAsync();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user