From 02b83bf26e454a175a4af780ddf512f25ec27341 Mon Sep 17 00:00:00 2001 From: loks0n <22452787+loks0n@users.noreply.github.com> Date: Fri, 12 Jan 2024 17:28:56 +0000 Subject: [PATCH] chore: changes to expire param create token --- app/controllers/api/users.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api/users.php b/app/controllers/api/users.php index 99c90bf1a7..1db85da329 100644 --- a/app/controllers/api/users.php +++ b/app/controllers/api/users.php @@ -1559,7 +1559,7 @@ App::post('/v1/users/:userId/tokens') ->label('sdk.response.model', Response::MODEL_TOKEN) ->param('userId', '', new CustomId(), 'User ID. Choose a custom ID or generate a random ID with `ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can\'t start with a special char. Max length is 36 chars.') ->param('length', 6, new Range(4, 128), 'Token length in chars.', true) - ->param('expire', Auth::TOKEN_EXPIRATION_UNIVERSAL, new Range(1, Auth::TOKEN_EXPIRATION_LOGIN_LONG), 'Token expiration in seconds from now.', true) + ->param('expire', Auth::TOKEN_EXPIRATION_UNIVERSAL, new Range(60, Auth::TOKEN_EXPIRATION_LOGIN_LONG), 'Token expiration in seconds.', true) ->inject('request') ->inject('response') ->inject('project')