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,