Updated CORS with POST specific with Surveys
This commit is contained in:
parent
43eb29c2e8
commit
b7e5e7d7fe
@ -34,9 +34,23 @@ builder.Services.AddAuthentication(item =>
|
||||
});
|
||||
|
||||
// CORS setup to allow requests from any origin.
|
||||
builder.Services.AddCors(p => p.AddPolicy("DamageAppCorsPolicy", build => {
|
||||
build.WithOrigins("*").AllowAnyMethod().AllowAnyHeader().AllowAnyOrigin();
|
||||
}));
|
||||
//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();
|
||||
});
|
||||
});
|
||||
|
||||
// Add controller services and API Explorer for endpoint discovery.
|
||||
builder.Services.AddControllers();
|
||||
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
||||
|
Loading…
Reference in New Issue
Block a user