mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-12 19:57:28 +08:00
fix: 🚑 increase expiration time
this is a temporary fix until i implement token revitalization where i might turn it back down to 7 days
This commit is contained in:
@@ -16,7 +16,7 @@ class SessionToken(
|
|||||||
|
|
||||||
// Token creation time
|
// Token creation time
|
||||||
@Column(nullable = false)
|
@Column(nullable = false)
|
||||||
var expiry: Instant = Instant.now().plusSeconds(3 * 86400),
|
var expiry: Instant = Instant.now().plusSeconds(14 * 86400),
|
||||||
|
|
||||||
// Linking to the AquaNetUser
|
// Linking to the AquaNetUser
|
||||||
@ManyToOne
|
@ManyToOne
|
||||||
|
|||||||
Reference in New Issue
Block a user