mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-05 00:59:36 +00:00
Merge pull request #22 from Shchoholiev/release/v0.1.1
SA-209 Added CORS
This commit is contained in:
commit
48f15e34c1
21
ShoppingAssistantApi.Api/ApiExtentions/CorsExtension.cs
Normal file
21
ShoppingAssistantApi.Api/ApiExtentions/CorsExtension.cs
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
@ -17,6 +17,7 @@ builder.Services.AddServices();
|
|||||||
builder.Services.AddHttpClient(builder.Configuration);
|
builder.Services.AddHttpClient(builder.Configuration);
|
||||||
builder.Services.AddGraphQl();
|
builder.Services.AddGraphQl();
|
||||||
builder.Services.AddControllers();
|
builder.Services.AddControllers();
|
||||||
|
builder.Services.AddCorsAllowAny();
|
||||||
|
|
||||||
builder.Services.AddEndpointsApiExplorer();
|
builder.Services.AddEndpointsApiExplorer();
|
||||||
builder.Services.AddSwaggerGen();
|
builder.Services.AddSwaggerGen();
|
||||||
@ -30,6 +31,8 @@ if (app.Environment.IsDevelopment())
|
|||||||
app.UseSwaggerUI();
|
app.UseSwaggerUI();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
app.UseCors("allowAnyOrigin");
|
||||||
|
|
||||||
app.UseHttpsRedirection();
|
app.UseHttpsRedirection();
|
||||||
|
|
||||||
app.UseAuthentication();
|
app.UseAuthentication();
|
||||||
|
Loading…
Reference in New Issue
Block a user