diff options
author | lain <lain@soykaf.club> | 2020-09-21 17:15:54 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-09-21 17:15:54 +0000 |
commit | 9108e27c2f77fd0f49b9ad7c31f6577377236fb2 (patch) | |
tree | 8da6c543e355286e48a54dea10b19e3f9c12d874 /test/integration/mastodon_websocket_test.exs | |
parent | b36b6259d8fcd677cfe3c5dc97d25bdc45c226f5 (diff) | |
parent | 60b025b782eb27b86a791451149b6690431371dc (diff) | |
download | pleroma-9108e27c2f77fd0f49b9ad7c31f6577377236fb2.tar.gz pleroma-9108e27c2f77fd0f49b9ad7c31f6577377236fb2.zip |
Merge branch '2074-streaming-api-oauth-scopes-validation' into 'develop'
[#2074] OAuth scope checking in Streaming API
Closes #2074
See merge request pleroma/pleroma!3013
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" }) ) |