diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-06-24 10:01:40 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-10-13 16:43:54 +0300 |
commit | e2332d92ceae60cf333b9ad930f80410daf6615e (patch) | |
tree | 8268c3ca04177b57e6519cd37738962306e2e474 /lib | |
parent | 96d320bdfecdb147cfbd7e74156f546885821915 (diff) | |
download | pleroma-e2332d92ceae60cf333b9ad930f80410daf6615e.tar.gz |
LegacyAuthenticationPlug module name
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/plugs/legacy_authentication_plug.ex | 2 | ||||
-rw-r--r-- | lib/pleroma/web/router.ex | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/web/plugs/legacy_authentication_plug.ex b/lib/pleroma/web/plugs/legacy_authentication_plug.ex index a770816e1..2a54d0b59 100644 --- a/lib/pleroma/web/plugs/legacy_authentication_plug.ex +++ b/lib/pleroma/web/plugs/legacy_authentication_plug.ex @@ -2,7 +2,7 @@ # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/> # SPDX-License-Identifier: AGPL-3.0-only -defmodule Pleroma.Plugs.LegacyAuthenticationPlug do +defmodule Pleroma.Web.Plugs.LegacyAuthenticationPlug do import Plug.Conn alias Pleroma.User diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index 2deb4bbbb..11a8e509c 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -29,7 +29,7 @@ defmodule Pleroma.Web.Router do plug(Pleroma.Plugs.BasicAuthDecoderPlug) plug(Pleroma.Web.Plugs.UserFetcherPlug) plug(Pleroma.Web.Plugs.SessionAuthenticationPlug) - plug(Pleroma.Plugs.LegacyAuthenticationPlug) + plug(Pleroma.Web.Plugs.LegacyAuthenticationPlug) plug(Pleroma.Plugs.AuthenticationPlug) end |