Extend expiration of the jwt token to 1 year
This commit is contained in:
@ -64,6 +64,6 @@ export const signFeatureToken = (feature: Feature): string => {
|
||||
grantedAt: feature.grantedAt ? feature.grantedAt.getTime() / 1000 : null,
|
||||
},
|
||||
env.server.jwtSecret,
|
||||
{ expiresIn: '1d' }
|
||||
{ expiresIn: '1y' }
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user