Start stored procs for user credentials

This commit is contained in:
Aaron Po
2026-01-19 22:57:24 -05:00
parent 89da531c48
commit fd544dbd34
11 changed files with 43 additions and 30 deletions

View File

@@ -4,10 +4,10 @@ namespace WebAPI.Controllers
{
[ApiController]
[ApiExplorerSettings(IgnoreApi = true)]
[Route("error")] // required
[Route("error")] // required
public class NotFoundController : ControllerBase
{
[HttpGet("404")] //required
[HttpGet("404")] //required
public IActionResult Handle404()
{
return NotFound(new { message = "Route not found." });