Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions MobileConfiguration/Database/Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ public static ModelBuilder SetupConfigurationTable(this ModelBuilder modelBuilde
r.Id,
r.ConfigType
});

// TODO: FK on LogLevel

return modelBuilder;
}

Expand Down
1 change: 0 additions & 1 deletion MobileConfiguration/Repository/IConfigurationRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public async Task<MobileConfiguration> 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,
Expand Down
Loading