From a0a8b5aabb90d5a1a3d16951ada4af8a7dbdc646 Mon Sep 17 00:00:00 2001 From: Daniel Wathen Date: Wed, 11 Jan 2023 12:55:49 -0700 Subject: [PATCH] Changed url to for API endpoints --- ReportingServices.UI/Controllers/ProductionReportController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReportingServices.UI/Controllers/ProductionReportController.cs b/ReportingServices.UI/Controllers/ProductionReportController.cs index 2459f8f..fa3a908 100644 --- a/ReportingServices.UI/Controllers/ProductionReportController.cs +++ b/ReportingServices.UI/Controllers/ProductionReportController.cs @@ -15,7 +15,7 @@ namespace ReportingServices.UI.Controllers public ProductionReportController(ILogger logger) { _logger = logger; - _baseDBUrl = "https://localhost:7196/api/"; + _baseDBUrl = "http://localhost:50201/api/"; _logger.LogInformation("Base Database Address: {baseUrl}", _baseDBUrl); }