Skip to content

Commit

Permalink
Fix borked methodname
Browse files Browse the repository at this point in the history
Fixes #1695
  • Loading branch information
stefannikolei authored and Erwinvandervalk committed Feb 7, 2025
1 parent 8c115b5 commit 13be58f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static BffBuilder AddEntityFrameworkServerSideSessions<TContext>(this Bff
where TContext : DbContext, ISessionDbContext
{
bffBuilder.Services.AddDbContext<TContext>(action);
return bffBuilder.AddAddEntityFrameworkServerSideSessionsServices<TContext>();
return bffBuilder.AddEntityFrameworkServerSideSessionsServices<TContext>();
}

/// <summary>
Expand All @@ -59,7 +59,7 @@ public static BffBuilder AddEntityFrameworkServerSideSessions<TContext>(this Bff
where TContext : DbContext, ISessionDbContext
{
bffBuilder.Services.AddDbContext<TContext>(action);
return bffBuilder.AddAddEntityFrameworkServerSideSessionsServices<TContext>();
return bffBuilder.AddEntityFrameworkServerSideSessionsServices<TContext>();
}


Expand All @@ -69,7 +69,7 @@ public static BffBuilder AddEntityFrameworkServerSideSessions<TContext>(this Bff
/// </summary>
/// <param name="bffBuilder"></param>
/// <returns></returns>
public static BffBuilder AddAddEntityFrameworkServerSideSessionsServices<TContext>(this BffBuilder bffBuilder)
public static BffBuilder AddEntityFrameworkServerSideSessionsServices<TContext>(this BffBuilder bffBuilder)
where TContext : ISessionDbContext
{
bffBuilder.Services.AddTransient<IUserSessionStoreCleanup, UserSessionStore>();
Expand Down

0 comments on commit 13be58f

Please sign in to comment.