Add TODO comment for appsettings.json config in DbContext

A TODO comment was added above OnModelCreating in RecDbContext to note that configuration should be updated to use appsettings.json in the future. No functional changes were made.
This commit is contained in:
2026-01-12 14:25:15 +01:00
parent e8fa149532
commit c82749bcbf

View File

@@ -34,6 +34,7 @@ public class RecDbContext(DbContextOptions<RecDbContext> options) : DbContext(op
public DbSet<InsertObjectResult> RecResults { get; set; }
// TODO: Update to configure via appsettings.json
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);