mirror of
https://github.com/bitwarden/server
synced 2025-12-25 04:33:26 +00:00
* Upgrade to Duende.Identity * Linting * Get rid of last IdentityServer4 package * Fix identity test since Duende returns additional configuration * Use Configure PostConfigure is ran after ASP.NET's PostConfigure so ConfigurationManager was already configured and our HttpHandler wasn't being respected. * Regenerate lockfiles * Move to 6.0.4 for patches * fixes with testing * Add additional grant type supported in 6.0.4 and beautify * Lockfile refresh * Reapply lockfiles * Apply change to new WebAuthn logic * When automated merging fails me --------- Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> Co-authored-by: Kyle Spearrin <kyle.spearrin@gmail.com>
21 lines
530 B
C#
21 lines
530 B
C#
using Bit.Core.Settings;
|
|
using Bit.Core.Utilities;
|
|
using Duende.IdentityServer.Services;
|
|
|
|
namespace Bit.Identity.IdentityServer;
|
|
|
|
public class CustomCorsPolicyService : ICorsPolicyService
|
|
{
|
|
private readonly GlobalSettings _globalSettings;
|
|
|
|
public CustomCorsPolicyService(GlobalSettings globalSettings)
|
|
{
|
|
_globalSettings = globalSettings;
|
|
}
|
|
|
|
public Task<bool> IsOriginAllowedAsync(string origin)
|
|
{
|
|
return Task.FromResult(CoreHelpers.IsCorsOriginAllowed(origin, _globalSettings));
|
|
}
|
|
}
|