Changed API endpoint URL

This commit is contained in:
Daniel Wathen
2023-01-12 10:57:11 -07:00
parent 096043d6ca
commit ba6d7b19e7

View File

@ -15,7 +15,7 @@ namespace ReportingServices.UI.Controllers
public ProductionReportController(ILogger<ProductionReportController> logger)
{
_logger = logger;
_baseDBUrl = "https://localhost:7196/api/";
_baseDBUrl = "http://localhost:50201/api/";
_logger.LogInformation("Base Database Address: {baseUrl}", _baseDBUrl);
}