Added testing endpoing to API

This commit is contained in:
Daniel Wathen 2023-01-05 12:49:30 -07:00
parent 2ce4109047
commit 3922d28a8b
2 changed files with 6 additions and 1 deletions

View File

@ -42,5 +42,11 @@ namespace ReportingServices.API.Controllers
{
return await _fabTimeReportingRepository.GetToolStateData(toolType);
}
[HttpGet("Testing")]
public string Testing()
{
return "This Works!";
}
}
}

View File

@ -6,7 +6,6 @@
<title>@ViewData["Title"] - ReportingServices</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
<link rel="stylesheet" href="~/ReportingServices.styles.css" asp-append-version="true" />
<link href="https://code.jquery.com/ui/1.13.2/themes/ui-lightness/jquery-ui.css"
rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.6.1.js"></script>