Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
239 changed files with 10428 additions and 98 deletions
Showing only changes of commit 3326b17d74 - Show all commits

View File

@ -60,9 +60,8 @@ public class Program
{ {
options.AddPolicy("AllowAll", policy => options.AddPolicy("AllowAll", policy =>
{ {
policy.AllowAnyHeader();
policy.AllowAnyMethod(); policy.AllowAnyMethod();
policy.WithOrigins("http://localhost:4200"); policy.AllowAnyHeader();
policy.AllowCredentials(); policy.AllowCredentials();
}); });
}); });