Merge pull request #22 from Shchoholiev/release/v0.1.1

SA-209 Added CORS
This commit is contained in:
Serhii Shchoholiev 2023-12-02 19:20:15 -08:00 committed by GitHub
commit 48f15e34c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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();