allow origins in votes

This commit is contained in:
Toastie 2025-03-29 20:53:46 +13:00
parent 177257da12
commit 28f21bae12
Signed by: toastie_t0ast
GPG key ID: 0861BE54AD481DC7

View file

@ -53,6 +53,11 @@ namespace EllieBot.VotesApi
opts.AddPolicy(Policies.DiscordbotlistAuth,
static policy => policy.RequireClaim(AuthHandler.DiscordbotlistClaim));
});
services.AddCors(x => x.AddDefaultPolicy(cpb =>
cpb.AllowAnyHeader()
.AllowAnyMethod()
.AllowAnyOrigin()));
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.