[#2025] Defaulted OAuth login scopes choice to all scopes when user selects no scopes.

This commit is contained in:
Ivan Tashkinov 2020-08-06 16:00:00 +03:00
parent 10b0e55acf
commit 135ae4e35a
1 changed files with 7 additions and 0 deletions

View File

@ -76,6 +76,13 @@ defmodule Pleroma.Web.OAuth.OAuthController do
available_scopes = (app && app.scopes) || []
scopes = Scopes.fetch_scopes(params, available_scopes)
scopes =
if scopes == [] do
available_scopes
else
scopes
end
# Note: `params` might differ from `conn.params`; use `@params` not `@conn.params` in template
render(conn, Authenticator.auth_template(), %{
response_type: params["response_type"],