From bb52768eb31ab4f02f44cdacba5d3b2ce3840f0c Mon Sep 17 00:00:00 2001 From: Stuart Ferguson Date: Fri, 3 Oct 2025 17:28:30 +0100 Subject: [PATCH] some fixes --- MobileConfiguration/Database/Extensions.cs | 3 --- MobileConfiguration/Repository/IConfigurationRepository.cs | 1 - 2 files changed, 4 deletions(-) diff --git a/MobileConfiguration/Database/Extensions.cs b/MobileConfiguration/Database/Extensions.cs index cb099bf..da983f6 100644 --- a/MobileConfiguration/Database/Extensions.cs +++ b/MobileConfiguration/Database/Extensions.cs @@ -19,9 +19,6 @@ public static ModelBuilder SetupConfigurationTable(this ModelBuilder modelBuilde r.Id, r.ConfigType }); - - // TODO: FK on LogLevel - return modelBuilder; } diff --git a/MobileConfiguration/Repository/IConfigurationRepository.cs b/MobileConfiguration/Repository/IConfigurationRepository.cs index 8c1741a..424ce2e 100644 --- a/MobileConfiguration/Repository/IConfigurationRepository.cs +++ b/MobileConfiguration/Repository/IConfigurationRepository.cs @@ -40,7 +40,6 @@ public async Task GetConfiguration(ConfigurationType config throw new NotFoundException($"No config of type [{configurationType}] found for Id [{id}]"); } - // TODO: create a factory MobileConfiguration configurationModel = new() { ClientId = configuration.ClientId, ClientSecret = configuration.ClientSecret,