Browse Source

Nuke the cors from the mobile BFF

davidfowl/common-services
David Fowler 1 year ago
committed by Reuben Bond
parent
commit
dbef61fdaf
1 changed files with 0 additions and 14 deletions
  1. +0
    -14
      src/ApiGateways/Mobile.Bff.Shopping/aggregator/Program.cs

+ 0
- 14
src/ApiGateways/Mobile.Bff.Shopping/aggregator/Program.cs View File

@ -6,16 +6,6 @@ builder.Services.AddReverseProxy(builder.Configuration);
builder.Services.AddControllers();
builder.Services.AddHealthChecks(builder.Configuration);
builder.Services.AddCors(options =>
{
// TODO: Read allowed origins from configuration
options.AddPolicy("CorsPolicy",
builder => builder
.SetIsOriginAllowed((host) => true)
.AllowAnyMethod()
.AllowAnyHeader()
.AllowCredentials());
});
builder.Services.AddApplicationServices();
builder.Services.AddGrpcServices();
@ -28,10 +18,6 @@ app.UseServiceDefaults();
app.UseHttpsRedirection();
app.UseCors("CorsPolicy");
app.UseAuthentication();
app.UseAuthorization();
app.MapControllers();
app.MapReverseProxy();


Loading…
Cancel
Save