diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2019-02-14 00:29:29 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2019-02-14 00:29:29 +0300 |
commit | 063baca5e4f3a100c0d45dffb14e4968599ef43b (patch) | |
tree | 007c44ff7cd2c90b2e1c18d7ced704448fea5601 /test/support/factory.ex | |
parent | a337bd114c3cbbb8e8270ec56a012e82f84df808 (diff) | |
download | pleroma-063baca5e4f3a100c0d45dffb14e4968599ef43b.tar.gz |
[#468] User UI for OAuth permissions restriction. Standardized storage format for `scopes` fields, updated usages.
Diffstat (limited to 'test/support/factory.ex')
-rw-r--r-- | test/support/factory.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/support/factory.ex b/test/support/factory.ex index 0c21093ce..eaa6f0ce2 100644 --- a/test/support/factory.ex +++ b/test/support/factory.ex @@ -214,7 +214,7 @@ defmodule Pleroma.Factory do %Pleroma.Web.OAuth.App{ client_name: "Some client", redirect_uris: "https://example.com/callback", - scopes: "read", + scopes: ["read"], website: "https://example.com", client_id: "aaabbb==", client_secret: "aaa;/&bbb" |