Skip to content

Commit

Permalink
Change back timeout to 15 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjonsson01 committed May 11, 2022
1 parent 3b16732 commit e77d6b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Client/Shared/MainLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
IsRounded = true,
};

private const int InactivityLogoutMilliseconds = 3000; // TODO: * 60 * 15; // 15 minutes
private const int InactivityLogoutMilliseconds = 1000 * 60 * 15; // 15 minutes
private readonly Timer _timer = new(InactivityLogoutMilliseconds);

Expand Down

0 comments on commit e77d6b1

Please sign in to comment.