From 012cb4bd56dcb5c50964ac31904907237b38ce96 Mon Sep 17 00:00:00 2001 From: Daniel Wathen Date: Wed, 11 Jan 2023 10:16:52 -0700 Subject: [PATCH] Updated url for accessing API endpoints. --- ReportingServices.UI/Controllers/PlanningReportController.cs | 2 +- ReportingServices.UI/Controllers/ProductionReportController.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ReportingServices.UI/Controllers/PlanningReportController.cs b/ReportingServices.UI/Controllers/PlanningReportController.cs index fd77425..943656f 100644 --- a/ReportingServices.UI/Controllers/PlanningReportController.cs +++ b/ReportingServices.UI/Controllers/PlanningReportController.cs @@ -12,7 +12,7 @@ namespace ReportingServices.UI.Controllers public PlanningReportController(ILogger logger) { _logger = logger; - _baseUrl = "https://localhost:50201/api/" + "ScrapeDB/"; + _baseUrl = "http://localhost:50201/api/" + "ScrapeDB/"; _logger.LogInformation("Base API Address: {baseUrl}", _baseUrl); } diff --git a/ReportingServices.UI/Controllers/ProductionReportController.cs b/ReportingServices.UI/Controllers/ProductionReportController.cs index b322458..c0782d6 100644 --- a/ReportingServices.UI/Controllers/ProductionReportController.cs +++ b/ReportingServices.UI/Controllers/ProductionReportController.cs @@ -16,7 +16,7 @@ namespace ReportingServices.UI.Controllers public ProductionReportController(ILogger logger) { _logger = logger; - _baseDBUrl = "https://localhost:50201/api/"; + _baseDBUrl = "http://localhost:50201/api/"; _logger.LogInformation("Base Database Address: {baseUrl}", _baseDBUrl); }