Skip to content

Commit

Permalink
Merge pull request #26 from Lombiq/issue/OSOE-606
Browse files Browse the repository at this point in the history
OSOE-606: Fixing new C# 11 analyzer violations
  • Loading branch information
0liver authored Jun 6, 2023
2 parents 9fd9ec3 + bdb2e77 commit a722bb3
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 a722bb3

Please sign in to comment.