Reverted Surveys CORS changes WithOrigins('*')
This commit is contained in:
parent
f00c7dd99c
commit
1fba3e81f1
@ -33,28 +33,13 @@ builder.Services.AddAuthentication(item =>
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
// CORS setup to allow requests from any origin.
|
//CORS setup to allow requests from any origin.
|
||||||
//builder.Services.AddCors(p => p.AddPolicy("DamageAppCorsPolicy", build => {
|
|
||||||
// build.WithOrigins("*").AllowAnyMethod().AllowAnyHeader().AllowAnyOrigin();
|
|
||||||
//}));
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//builder.Services.AddCors(options =>
|
|
||||||
//{
|
|
||||||
// options.AddPolicy("DamageAppCorsPolicy", builder =>
|
|
||||||
// {
|
|
||||||
// builder.WithOrigins("*")
|
|
||||||
// .AllowAnyHeader()
|
|
||||||
// .WithMethods("POST") // Allowing only the POST method
|
|
||||||
// .AllowAnyOrigin();
|
|
||||||
// });
|
|
||||||
|
|
||||||
//});
|
|
||||||
builder.Services.AddCors(p => p.AddPolicy("DamageAppCorsPolicy", build => {
|
builder.Services.AddCors(p => p.AddPolicy("DamageAppCorsPolicy", build => {
|
||||||
build.WithOrigins("http://localhost:3000").AllowAnyMethod().AllowAnyHeader().AllowAnyOrigin();
|
build.WithOrigins("*").AllowAnyMethod().AllowAnyHeader().AllowAnyOrigin();
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Add controller services and API Explorer for endpoint discovery.
|
// Add controller services and API Explorer for endpoint discovery.
|
||||||
builder.Services.AddControllers();
|
builder.Services.AddControllers();
|
||||||
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
||||||
|
Loading…
Reference in New Issue
Block a user