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!";
}
}
}