Merge pull request #59875 from nextcloud/fix/minute-to-hour

fix(webhook-listeners): hour lifetime of tokens
This commit is contained in:
Andy Scherzinger 2026-04-23 13:57:57 +02:00 committed by GitHub
commit 31083ca489
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,7 @@ use Psr\Log\LoggerInterface;
class EphemeralTokenMapper extends QBMapper {
public const TABLE_NAME = 'webhook_tokens';
public const TOKEN_LIFETIME = 1 * 1 * 60; // one hour in seconds
public const TOKEN_LIFETIME = 1 * 60 * 60; // one hour in seconds
public function __construct(
IDBConnection $db,