mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 08:58:35 +00:00
chore: remove comma
This commit is contained in:
parent
be5c4b753a
commit
ead7a17645
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ class Slack extends OAuth2
|
|||
{
|
||||
return 'https://slack.com/oauth/v2/authorize?' . \http_build_query([
|
||||
'client_id' => $this->appID,
|
||||
'user_scope' => \implode(',', $this->getScopes()),
|
||||
'user_scope' => \implode(' ', $this->getScopes()),
|
||||
'redirect_uri' => $this->callback,
|
||||
'state' => \json_encode($this->state)
|
||||
]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue