aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/tests/oauth_test_controller.ex
diff options
context:
space:
mode:
authorEgor Kislitsyn <egor@kislitsyn.com>2020-04-30 13:51:27 +0400
committerEgor Kislitsyn <egor@kislitsyn.com>2020-04-30 13:51:27 +0400
commit1898054da4bcccb25e0bcd9d6463af38ced43351 (patch)
tree66c8eab923d261a1b802046afa50aa77926171d4 /lib/pleroma/tests/oauth_test_controller.ex
parent560f2c1979ca4d49f18abd6de6aac49875bfc771 (diff)
parentdae91630606d6ba408b3f340b6b450703c164ce1 (diff)
downloadpleroma-1898054da4bcccb25e0bcd9d6463af38ced43351.tar.gz
Merge branch 'develop' into openapi/reports
Diffstat (limited to 'lib/pleroma/tests/oauth_test_controller.ex')
-rw-r--r--lib/pleroma/tests/oauth_test_controller.ex31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/pleroma/tests/oauth_test_controller.ex b/lib/pleroma/tests/oauth_test_controller.ex
deleted file mode 100644
index 58d517f78..000000000
--- a/lib/pleroma/tests/oauth_test_controller.ex
+++ /dev/null
@@ -1,31 +0,0 @@
-# Pleroma: A lightweight social networking server
-# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
-# SPDX-License-Identifier: AGPL-3.0-only
-
-# A test controller reachable only in :test env.
-# Serves to test OAuth scopes check skipping / enforcement.
-defmodule Pleroma.Tests.OAuthTestController do
- @moduledoc false
-
- use Pleroma.Web, :controller
-
- alias Pleroma.Plugs.OAuthScopesPlug
-
- plug(:skip_plug, OAuthScopesPlug when action == :skipped_oauth)
-
- plug(OAuthScopesPlug, %{scopes: ["read"]} when action != :missed_oauth)
-
- def skipped_oauth(conn, _params) do
- noop(conn)
- end
-
- def performed_oauth(conn, _params) do
- noop(conn)
- end
-
- def missed_oauth(conn, _params) do
- noop(conn)
- end
-
- defp noop(conn), do: json(conn, %{})
-end