chore(backend): add explicit test data seed command
All checks were successful
deploy-socialize / image (push) Successful in 53s
deploy-socialize / deploy (push) Successful in 21s

This commit is contained in:
2026-05-07 13:43:53 -04:00
parent 918136aae2
commit 6e417312f9
9 changed files with 74 additions and 47 deletions

View File

@@ -1,5 +1,4 @@
using Socialize.Api.Modules.Workspaces.Data;
using Socialize.Api.Infrastructure.Development;
namespace Socialize.Api.Modules.Workspaces;
@@ -8,9 +7,6 @@ public static class DependencyInjection
public static WebApplicationBuilder AddWorkspaceModule(
this WebApplicationBuilder builder)
{
builder.Services.Configure<DevelopmentSeedOptions>(
builder.Configuration.GetSection(DevelopmentSeedOptions.SectionName));
return builder;
}
}