fix(webhook-listeners): hour lifetime of tokens

Signed-off-by: Jana Peper <jana.peper@nextcloud.com>
This commit is contained in:
Jana Peper 2026-04-23 13:39:23 +02:00 committed by backportbot[bot]
parent d443b3d481
commit a7a77816e2

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,