Use a more intuitive route to this controller
This commit is contained in:
parent
3a31efc539
commit
67cb76d7eb
1 changed files with 1 additions and 2 deletions
|
|
@ -10,7 +10,7 @@ using Yavsc.Models.Billing;
|
||||||
namespace Yavsc.Controllers
|
namespace Yavsc.Controllers
|
||||||
{
|
{
|
||||||
[Produces("application/json")]
|
[Produces("application/json")]
|
||||||
[Route("api/do"),Authorize()]
|
[Route("api/estimate"),Authorize()]
|
||||||
public class EstimateApiController : Controller
|
public class EstimateApiController : Controller
|
||||||
{
|
{
|
||||||
private ApplicationDbContext _context;
|
private ApplicationDbContext _context;
|
||||||
|
|
@ -40,7 +40,6 @@ namespace Yavsc.Controllers
|
||||||
return new HttpStatusCodeResult(StatusCodes.Status403Forbidden);
|
return new HttpStatusCodeResult(StatusCodes.Status403Forbidden);
|
||||||
return Ok(_context.Estimates.Where(e=>e.OwnerId == ownerId));
|
return Ok(_context.Estimates.Where(e=>e.OwnerId == ownerId));
|
||||||
}
|
}
|
||||||
|
|
||||||
// GET: api/Estimate/5
|
// GET: api/Estimate/5
|
||||||
[HttpGet("{id}", Name = "GetEstimate")]
|
[HttpGet("{id}", Name = "GetEstimate")]
|
||||||
public IActionResult GetEstimate([FromRoute] long id)
|
public IActionResult GetEstimate([FromRoute] long id)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue