From de317675a8069b747cb253ba3e2b5dc394ca36ef Mon Sep 17 00:00:00 2001 From: Jake Vanderwerf <get@jakevanderwerf.ca> Date: Sat, 18 Jul 2026 21:44:51 +0000 Subject: [PATCH] =Base Integrations mainly done - doing a test with setting up the Square integration to follow --- 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