Merge pull request #59882 from nextcloud/backport/59875/stable33

[stable33] fix(webhook-listeners): hour lifetime of tokens
This commit is contained in:
Andy Scherzinger 2026-04-23 16:21:30 +02:00 committed by GitHub
commit abb7cfe37c
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,