X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FConsole%2FCommands%2FTwitchAuth.php;h=94d8adaa71628c28cc304a28011c292b8675dbed;hb=HEAD;hp=4b185c6cfd22b64d712fd15c39929960bc6b079f;hpb=af4f2e9450392e41e4a0bfb3247fe3b4435f03c7;p=alttp.git diff --git a/app/Console/Commands/TwitchAuth.php b/app/Console/Commands/TwitchAuth.php index 4b185c6..94d8ada 100644 --- a/app/Console/Commands/TwitchAuth.php +++ b/app/Console/Commands/TwitchAuth.php @@ -33,7 +33,7 @@ class TwitchAuth extends Command { if (!$token) { $token = new TwitchToken(); $token->nick = $this->argument('nick'); - $token->scope = ['chat:read', 'chat:edit', 'whispers:read', 'whispers:edit']; + $token->scope = ['chat:read', 'chat:edit', 'whispers:read', 'user:manage:whispers']; } $url = $token->getAuthUrl(); $this->line('Please visit '.$url);