AdminSecretAuthenticationPlug module name
authorAlexander Strizhakov <alex.strizhakov@gmail.com>
Wed, 24 Jun 2020 08:18:42 +0000 (11:18 +0300)
committerAlexander Strizhakov <alex.strizhakov@gmail.com>
Tue, 13 Oct 2020 13:43:58 +0000 (16:43 +0300)
lib/pleroma/web/plugs/admin_secret_authentication_plug.ex
lib/pleroma/web/router.ex
test/pleroma/web/plugs/admin_secret_authentication_plug_test.exs

index 2e54df47a386bb6e02eb402981e09c5567d08cdc..9c74544432ba6d22036d385fe298d29ae8c96959 100644 (file)
@@ -2,7 +2,7 @@
 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
 # SPDX-License-Identifier: AGPL-3.0-only
 
-defmodule Pleroma.Plugs.AdminSecretAuthenticationPlug do
+defmodule Pleroma.Web.Plugs.AdminSecretAuthenticationPlug do
   import Plug.Conn
 
   alias Pleroma.Plugs.OAuthScopesPlug
index 855e690776cb0b58695c9e9c07e0febab72977b8..d2d93998965e8592cd72429abacd96b46a7e88d0 100644 (file)
@@ -64,7 +64,7 @@ defmodule Pleroma.Web.Router do
   pipeline :admin_api do
     plug(:expect_authentication)
     plug(:base_api)
-    plug(Pleroma.Plugs.AdminSecretAuthenticationPlug)
+    plug(Pleroma.Web.Plugs.AdminSecretAuthenticationPlug)
     plug(:after_auth)
     plug(Pleroma.Web.Plugs.EnsureAuthenticatedPlug)
     plug(Pleroma.Web.Plugs.UserIsAdminPlug)
index 4d35dc99c2aac0f91ec392f0ee10899c690b3075..33394722a5e39da6d63581834067391042ab2ab8 100644 (file)
@@ -8,10 +8,10 @@ defmodule Pleroma.Web.Plugs.AdminSecretAuthenticationPlugTest do
   import Mock
   import Pleroma.Factory
 
-  alias Pleroma.Plugs.AdminSecretAuthenticationPlug
-  alias Pleroma.Plugs.OAuthScopesPlug
-  alias Pleroma.Plugs.PlugHelper
-  alias Pleroma.Plugs.RateLimiter
+  alias Pleroma.Web.Plugs.AdminSecretAuthenticationPlug
+  alias Pleroma.Web.Plugs.OAuthScopesPlug
+  alias Pleroma.Web.Plugs.PlugHelper
+  alias Pleroma.Web.Plugs.RateLimiter
 
   test "does nothing if a user is assigned", %{conn: conn} do
     user = insert(:user)