diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-09-19 19:16:55 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-09-19 19:16:55 +0300 |
commit | 60b025b782eb27b86a791451149b6690431371dc (patch) | |
tree | 1b505061c4374b6fa8a8491b3402707e9eccd797 /test/integration/mastodon_websocket_test.exs | |
parent | 6c052bd5b6cc29d321b500654bd6b098d0e6c56a (diff) | |
download | pleroma-60b025b782eb27b86a791451149b6690431371dc.tar.gz pleroma-60b025b782eb27b86a791451149b6690431371dc.zip |
[#2074] OAuth scope checking in Streaming API.
Diffstat (limited to 'test/integration/mastodon_websocket_test.exs')
-rw-r--r-- | test/integration/mastodon_websocket_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/mastodon_websocket_test.exs b/test/integration/mastodon_websocket_test.exs index 76fbc8bda..0f2e6cc2b 100644 --- a/test/integration/mastodon_websocket_test.exs +++ b/test/integration/mastodon_websocket_test.exs @@ -78,7 +78,7 @@ defmodule Pleroma.Integration.MastodonWebsocketTest do Pleroma.Repo.insert( OAuth.App.register_changeset(%OAuth.App{}, %{ client_name: "client", - scopes: ["scope"], + scopes: ["read"], redirect_uris: "url" }) ) |