Skip to content

Commit

Permalink
Reset the token expriation to 5 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
JonPSmith committed Oct 1, 2022
1 parent ec70654 commit a5767bf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Example2.WebApiWithToken.IndividualAccounts/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
Issuer = jwtData.Issuer,
Audience = jwtData.Audience,
SigningKey = jwtData.SigningKey,
TokenExpires = new TimeSpan(0, 20, 0), //Quick Token expiration because we use a refresh token
TokenExpires = new TimeSpan(0, 5, 0), //Quick Token expiration because we use a refresh token
RefreshTokenExpires = new TimeSpan(1, 0, 0, 0) //Refresh token is valid for one day
};
})
Expand Down
1 change: 0 additions & 1 deletion ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

- Improved feature: AuthPermissionsDbContext now takes mutiple IDatabaseStateChangeEvent
- Improved feature: No AuthP database event change listeners will be triggered during bulk loading
- Improved feature: Updated FileStore distributed cache to version ???

## 3.4.0

Expand Down

0 comments on commit a5767bf

Please sign in to comment.