Hardcoded all production string references.

This commit is contained in:
Daniel Wathen
2023-01-06 11:15:56 -07:00
parent ddbd8fd281
commit 8077f6222e
4 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,7 @@
using Microsoft.AspNetCore.Mvc;
using ReportingServices.Shared.Models.PlanningReport;
using ReportingServices.Shared.HelperClasses;
using static System.Net.WebRequestMethods;
namespace ReportingServices.UI.Controllers
{
@ -14,7 +15,7 @@ namespace ReportingServices.UI.Controllers
{
_logger = logger;
_configuration = configuration;
_baseUrl = _configuration.GetValue<string>("BaseAPIAddress") + "ScrapeDB/";
_baseUrl = "http://localhost:50201/api/" + "ScrapeDB/";
_logger.LogInformation("Base API Address: {baseUrl}", _baseUrl);
}