Changed port for accessing the APIs

This commit is contained in:
Daniel Wathen
2023-01-11 10:11:32 -07:00
parent 6436465fa1
commit 9a7184841d
2 changed files with 2 additions and 4 deletions

View File

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

View File

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