fix: add account:read for alby
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Kieran 2024-01-04 17:12:52 +00:00
parent 2e97546ab0
commit daad0bbe76
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ export function getAlbyOAuth() {
const clientId = CONFIG.alby?.clientId ?? "";
const clientSecret = CONFIG.alby?.clientSecret ?? "";
const redirectUrl = `${window.location.protocol}//${window.location.host}/settings/wallet/alby`;
const scopes = ["invoices:create", "invoices:read", "transactions:read", "balance:read", "payments:send"];
const scopes = ["invoices:create", "invoices:read", "transactions:read", "balance:read", "payments:send", "account:read"];
const ec = new TextEncoder();
const tokenUrl = "https://api.getalby.com/oauth/token";