aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/controller_helper.ex
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-03-14 22:33:20 +0300
committerrinpatch <rinpatch@sdf.org>2019-03-14 22:33:20 +0300
commitcbdd11c38111fd7c195983f40265b675e1201d4e (patch)
tree44c63ed6430a743cfe589fed5213467a0dd6dabb /lib/pleroma/web/controller_helper.ex
parent355f285a8693934fbc8205c2c9ecde0a758fc158 (diff)
parent34fc0dca2e879bcbb73acc80fdc72678411d0ebf (diff)
downloadpleroma-cbdd11c38111fd7c195983f40265b675e1201d4e.tar.gz
Merge develop to bump elixir version in the CI so I don't get failing formatting
Diffstat (limited to 'lib/pleroma/web/controller_helper.ex')
-rw-r--r--lib/pleroma/web/controller_helper.ex3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pleroma/web/controller_helper.ex b/lib/pleroma/web/controller_helper.ex
index 5915ea40e..4d6192db0 100644
--- a/lib/pleroma/web/controller_helper.ex
+++ b/lib/pleroma/web/controller_helper.ex
@@ -6,7 +6,8 @@ defmodule Pleroma.Web.ControllerHelper do
use Pleroma.Web, :controller
def oauth_scopes(params, default) do
- # Note: `scopes` is used by Mastodon — supporting it but sticking to OAuth's standard `scope` wherever we control it
+ # Note: `scopes` is used by Mastodon — supporting it but sticking to
+ # OAuth's standard `scope` wherever we control it
Pleroma.Web.OAuth.parse_scopes(params["scope"] || params["scopes"], default)
end