Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/Lombiq/Setup-Extensions into…
Browse files Browse the repository at this point in the history
… issue/OSOE-548
  • Loading branch information
dministro committed Jun 10, 2023
2 parents 5787494 + a722bb3 commit a2dcadf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Apis/Context/AuthenticationContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// Copied from AuthenticationContext.cs in OrchardCore.Tests.Apis.Context with minor modifications.
namespace Lombiq.SetupExtensions.Apis.Context;

internal class PermissionContextAuthorizationHandler : AuthorizationHandler<PermissionRequirement>
internal sealed class PermissionContextAuthorizationHandler : AuthorizationHandler<PermissionRequirement>
{
private readonly PermissionsContext _permissionsContext;

Expand Down Expand Up @@ -56,7 +56,7 @@ protected override Task HandleRequirementAsync(AuthorizationHandlerContext conte
}
}

internal class AlwaysLoggedInApiAuthenticationHandler : AuthenticationHandler<ApiAuthorizationOptions>
internal sealed class AlwaysLoggedInApiAuthenticationHandler : AuthenticationHandler<ApiAuthorizationOptions>
{
public AlwaysLoggedInApiAuthenticationHandler(
IOptionsMonitor<ApiAuthorizationOptions> options,
Expand All @@ -72,14 +72,14 @@ protected override Task<AuthenticateResult> HandleAuthenticateAsync() =>
new System.Security.Claims.ClaimsPrincipal(new AlwaysLoggedInIdentity()), "Api")));
}

internal class PermissionsContext
internal sealed class PermissionsContext
{
public IEnumerable<Permission> AuthorizedPermissions { get; set; } = Enumerable.Empty<Permission>();

public bool UsePermissionsContext { get; set; }
}

internal class AlwaysLoggedInIdentity : IIdentity
internal sealed class AlwaysLoggedInIdentity : IIdentity
{
public string AuthenticationType => "Always Authenticated";

Expand Down

0 comments on commit a2dcadf

Please sign in to comment.