Updated url for accessing API endpoints.

This commit is contained in:
Daniel Wathen
2023-01-11 10:16:52 -07:00
parent 9a7184841d
commit 012cb4bd56
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ namespace ReportingServices.UI.Controllers
public PlanningReportController(ILogger<PlanningReportController> logger)
{
_logger = logger;
_baseUrl = "https://localhost:50201/api/" + "ScrapeDB/";
_baseUrl = "http://localhost:50201/api/" + "ScrapeDB/";
_logger.LogInformation("Base API Address: {baseUrl}", _baseUrl);
}