From 0dfe1d8afafc59c4a5559c498342668d5a58d6ef Mon Sep 17 00:00:00 2001 From: Jake Vanderwerf <get@jakevanderwerf.ca> Date: Thu, 23 Jul 2026 22:41:41 +0000 Subject: [PATCH] =Still working away at the Integrations overhaul --- inc/integrations/OAuthCredentials.php | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/inc/integrations/OAuthCredentials.php b/inc/integrations/OAuthCredentials.php index 4664ab8..ff59d7d 100644 --- a/inc/integrations/OAuthCredentials.php +++ b/inc/integrations/OAuthCredentials.php @@ -10,6 +10,7 @@ public string $access_token; public int $expires_at; public ?string $refresh_token; + public ?string $revoke; public array $scopes; public function __construct(array $data) @@ -41,7 +42,7 @@ 'access_token' => $this->access_token, 'expires_at' => $this->expires_at, 'refresh_token' => $this->refresh_token, - 'scopes' => $this->scopes, +// 'scopes' => $this->scopes, ]; } } -- Gitblit v1.10.0