[#923] Minor semantic adjustment.
authorIvan Tashkinov <ivant.business@gmail.com>
Wed, 17 Apr 2019 08:33:21 +0000 (11:33 +0300)
committerIvan Tashkinov <ivant.business@gmail.com>
Wed, 17 Apr 2019 08:33:21 +0000 (11:33 +0300)
lib/pleroma/web/oauth/oauth_controller.ex

index 8e5a834664eaf917fc2b414edb5826acba411ce2..9874bac2319bdc706b9cd6cc348cb0f3243e9af0 100644 (file)
@@ -44,7 +44,9 @@ defmodule Pleroma.Web.OAuth.OAuthController do
 
   def authorize(conn, params), do: do_authorize(conn, params)
 
-  defp do_authorize(conn, %{"authorization" => auth_attrs}) do
+  defp do_authorize(conn, %{"authorization" => auth_attrs}), do: do_authorize(conn, auth_attrs)
+
+  defp do_authorize(conn, auth_attrs) do
     app = Repo.get_by(App, client_id: auth_attrs["client_id"])
     available_scopes = (app && app.scopes) || []
     scopes = oauth_scopes(auth_attrs, nil) || available_scopes
@@ -60,8 +62,6 @@ defmodule Pleroma.Web.OAuth.OAuthController do
     })
   end
 
-  defp do_authorize(conn, auth_attrs), do: do_authorize(conn, %{"authorization" => auth_attrs})
-
   def create_authorization(
         conn,
         %{"authorization" => _} = params,