Skip to content

Commit

Permalink
update token scope
Browse files Browse the repository at this point in the history
  • Loading branch information
azaleacolburn committed Jul 24, 2024
1 parent abab679 commit c0ad668
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fission/src/aps/APS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class APS {
* Logs the user out by setting their auth data to undefined and revoking their auth token.
*/
static async logout() {
await this.revokeTokenPublic()
await this.revokeTokenPublic()
this.auth = undefined
}

Expand Down Expand Up @@ -175,7 +175,7 @@ class APS {
response_type: "code",
client_id: CLIENT_ID,
redirect_uri: callbackUrl,
scope: "data:create",
scope: "data:read",
nonce: Date.now().toString(),
prompt: "login",
code_challenge: challenge,
Expand Down

0 comments on commit c0ad668

Please sign in to comment.