Increase number of access tokens per user to 60

This commit is contained in:
binwiederhier 2025-05-25 12:23:02 -04:00
parent df7dd9c498
commit 0de1990c01
3 changed files with 3 additions and 2 deletions

View file

@ -28,7 +28,7 @@ const (
userHardDeleteAfterDuration = 7 * 24 * time.Hour
tokenPrefix = "tk_"
tokenLength = 32
tokenMaxCount = 20 // Only keep this many tokens in the table per user
tokenMaxCount = 60 // Only keep this many tokens in the table per user
tag = "user_manager"
)