mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
22 lines
512 B
C#
22 lines
512 B
C#
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;
|
|
}
|
|
}
|