Skip to content

Commit

Permalink
Rename refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matasx committed Dec 7, 2024
1 parent 3c9cbf3 commit b4612a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modules/Authentication/MultiAuthentication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static class MultiAuthentication
/// Creates a authentication handler that will use
/// underlying handlers to authenticate the request.
/// </summary>
public static MultiConcernBuilder Create() => new();
public static MultiAuthenticationConcernBuilder Create() => new();

#endregion

Expand All @@ -21,7 +21,7 @@ public static class MultiAuthentication
/// Adds multi authentication to the handler.
/// </summary>
/// <param name="apiKeyAuth">The authentication concern to be added</param>
public static T Add<T>(this T builder, MultiConcernBuilder apiKeyAuth) where T : IHandlerBuilder<T>
public static T Add<T>(this T builder, MultiAuthenticationConcernBuilder apiKeyAuth) where T : IHandlerBuilder<T>
{
builder.Add(apiKeyAuth);
return builder;
Expand Down

0 comments on commit b4612a3

Please sign in to comment.