20 lines
531 B
C#
20 lines
531 B
C#
namespace LMS.service.Configuration
|
|
{
|
|
public static class AddCorsConifg
|
|
{
|
|
public static void AddCorsServices(this IServiceCollection services)
|
|
{
|
|
services.AddCors(options =>
|
|
{
|
|
options.AddPolicy("AllowAll",
|
|
builder =>
|
|
{
|
|
builder.AllowAnyOrigin()
|
|
.AllowAnyMethod()
|
|
.AllowAnyHeader();
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}
|