Skip to content

Commit dd17ab5

Browse files
authoredOct 12, 2024··
fix: removed unused parameter from WithPerTenantRemoteAuthenticationConvention (#886)
1 parent 9834575 commit dd17ab5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎src/Finbuckle.MultiTenant.AspNetCore/Extensions/MultiTenantBuilderExtensions.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ public static MultiTenantBuilder<TTenantInfo> WithPerTenantAuthentication<TTenan
5959
/// </summary>
6060
/// <returns>The same MultiTenantBuilder passed into the method.</returns>
6161
public static MultiTenantBuilder<TTenantInfo> WithPerTenantAuthenticationConventions<TTenantInfo>(
62-
this MultiTenantBuilder<TTenantInfo> builder,
63-
Action<MultiTenantAuthenticationOptions>? config = null)
62+
this MultiTenantBuilder<TTenantInfo> builder)
6463
where TTenantInfo : class, ITenantInfo, new()
6564
{
6665
// Set events to set and validate tenant for each cookie based authentication principal.

0 commit comments

Comments
 (0)
Please sign in to comment.