Fix typo in Mastodon service configs

Fixed a typo preventing the creation of a new client app.
This commit is contained in:
St John Karp 2018-09-09 21:09:03 -07:00
parent 911edfa02e
commit b03b3ec100
1 changed files with 1 additions and 1 deletions

View File

@ -41,6 +41,6 @@ return [
'client_secret' => env('MASTODON_SECRET'),
'redirect' => env('MASTODON_REDIRECT'),
//'read', 'write', 'follow'
'scope' => ['read', 'write', 'follow'],
'scopes' => ['read', 'write', 'follow'],
],
];