Add door shuffle, flute, and lamp settings

This commit is contained in:
2025-03-08 19:34:26 -06:00
parent 2784e3c60b
commit 3cd3bd1362
4 changed files with 69 additions and 3 deletions

View File

@@ -44,7 +44,7 @@
builder.Services.AddCors(options => {
options.AddPolicy("AllowDomains", policy => {
foreach (var domain in settings.AllowedCors) {
policy.WithOrigins(domain);
policy.WithOrigins(domain).AllowAnyHeader();
}
});
});