Skip to content

Commit

Permalink
fx
Browse files Browse the repository at this point in the history
  • Loading branch information
oskogstad committed Dec 11, 2024
1 parent 6e88e0c commit 18990d9
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public async Task<DialogSearchAuthorizationResult> GetAuthorizedResourcesForSear
return authorizedResources;
}

[SuppressMessage("Performance", "CA1822:Mark members as static")]
public async Task<AuthorizedPartiesResult> GetAuthorizedParties(IPartyIdentifier authenticatedParty, bool _ = false, CancellationToken __ = default)
=> await Task.FromResult(new AuthorizedPartiesResult
{
Expand All @@ -72,5 +71,5 @@ public async Task<AuthorizedPartiesResult> GetAuthorizedParties(IPartyIdentifier
}]
});

public Task<bool> HasListAuthorizationForDialog(DialogEntity dialog, CancellationToken cancellationToken) => Task.FromResult(true);
public Task<bool> HasListAuthorizationForDialog(DialogEntity _, CancellationToken __) => Task.FromResult(true);
}

0 comments on commit 18990d9

Please sign in to comment.