Skip to content
Snippets Groups Projects
Unverified Commit c8b182b0 authored by Maxime FRIESS's avatar Maxime FRIESS :blue_heart:
Browse files

[auth] Make jwt not expire

parent aff918aa
Branches
Tags
No related merge requests found
Pipeline #106896 failed with stages
in 1 minute and 27 seconds
......@@ -89,7 +89,7 @@
|
*/
'ttl' => env('JWT_TTL', 60),
'ttl' => env('JWT_TTL', null),
/*
|--------------------------------------------------------------------------
......@@ -108,7 +108,7 @@
|
*/
'refresh_ttl' => env('JWT_REFRESH_TTL', 20160),
'refresh_ttl' => env('JWT_REFRESH_TTL', null),
/*
|--------------------------------------------------------------------------
......@@ -138,7 +138,6 @@
'required_claims' => [
'iss',
'iat',
'exp',
'nbf',
'sub',
'jti',
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment