SA-209 Added CORS

This commit is contained in:
shchoholiev 2023-12-02 20:54:49 +00:00
parent 7811961a41
commit c8db205c73
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,21 @@
namespace ShoppingAssistantApi.Api.ApiExtentions;
public static class CorsExtension
{
public static IServiceCollection AddCorsAllowAny(this IServiceCollection services)
{
services.AddCors(options =>
{
options.AddPolicy("allowAnyOrigin",
builder =>
{
builder
.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader();
});
});
return services;
}
}

View File

@ -17,6 +17,7 @@ builder.Services.AddServices();
builder.Services.AddHttpClient(builder.Configuration);
builder.Services.AddGraphQl();
builder.Services.AddControllers();
builder.Services.AddCorsAllowAny();
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
@ -30,6 +31,8 @@ if (app.Environment.IsDevelopment())
app.UseSwaggerUI();
}
app.UseCors("allowAnyOrigin");
app.UseHttpsRedirection();
app.UseAuthentication();