Skip to content

Commit 394baf8

Browse files
committed
Added in memory ticket store
1 parent 62c054a commit 394baf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LearningHub.Nhs.WebUI/Startup/AuthenticationConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static void ConfigureAuthentication(this IServiceCollection services, Lea
4343
options.SlidingExpiration = true;
4444
options.EventsType = typeof(CookieEventHandler);
4545
options.AccessDeniedPath = "/Home/AccessDenied";
46-
////options.SessionStore = new InMemoryTicketStore(new ConcurrentDictionary<string, AuthenticationTicket>());
46+
options.SessionStore = new InMemoryTicketStore(new ConcurrentDictionary<string, AuthenticationTicket>());
4747
})
4848
.AddOpenIdConnect(AuthenticationScheme, options =>
4949
{

0 commit comments

Comments
 (0)