OAuthPlug module name
authorAlexander Strizhakov <alex.strizhakov@gmail.com>
Wed, 24 Jun 2020 06:59:21 +0000 (09:59 +0300)
committerAlexander Strizhakov <alex.strizhakov@gmail.com>
Tue, 13 Oct 2020 13:43:54 +0000 (16:43 +0300)
lib/pleroma/web/plugs/o_auth_plug.ex
lib/pleroma/web/router.ex
test/pleroma/web/plugs/o_auth_plug_test.exs

index 6fa71ef47ca57bdd6ad21e23e9d96f9753eee09f..c7b58d90fa7dd20d28959c1664b782a38c9d74fe 100644 (file)
@@ -2,7 +2,7 @@
 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
 # SPDX-License-Identifier: AGPL-3.0-only
 
-defmodule Pleroma.Plugs.OAuthPlug do
+defmodule Pleroma.Web.Plugs.OAuthPlug do
   import Plug.Conn
   import Ecto.Query
 
index f90933e5ae5b4d98e71e183bb3aeb25ad757c9c5..2deb4bbbb6d2ceaf321da4983fccd520732d2c87 100644 (file)
@@ -12,7 +12,7 @@ defmodule Pleroma.Web.Router do
 
   pipeline :oauth do
     plug(:fetch_session)
-    plug(Pleroma.Plugs.OAuthPlug)
+    plug(Pleroma.Web.Plugs.OAuthPlug)
     plug(Pleroma.Web.Plugs.UserEnabledPlug)
   end
 
@@ -25,7 +25,7 @@ defmodule Pleroma.Web.Router do
   end
 
   pipeline :authenticate do
-    plug(Pleroma.Plugs.OAuthPlug)
+    plug(Pleroma.Web.Plugs.OAuthPlug)
     plug(Pleroma.Plugs.BasicAuthDecoderPlug)
     plug(Pleroma.Web.Plugs.UserFetcherPlug)
     plug(Pleroma.Web.Plugs.SessionAuthenticationPlug)
index f4df8f4cbe8bcf7a5e4006c09b95397f0004dc39..b9d722f7624c43de5992b6102c3a45ce220cef71 100644 (file)
@@ -5,7 +5,7 @@
 defmodule Pleroma.Web.Plugs.OAuthPlugTest do
   use Pleroma.Web.ConnCase, async: true
 
-  alias Pleroma.Plugs.OAuthPlug
+  alias Pleroma.Web.Plugs.OAuthPlug
   import Pleroma.Factory
 
   @session_opts [