TrailingFormatPlug module name
authorAlexander Strizhakov <alex.strizhakov@gmail.com>
Wed, 24 Jun 2020 06:05:23 +0000 (09:05 +0300)
committerAlexander Strizhakov <alex.strizhakov@gmail.com>
Tue, 13 Oct 2020 13:42:51 +0000 (16:42 +0300)
lib/pleroma/web/endpoint.ex
lib/pleroma/web/plugs/trailing_format_plug.ex

index d147f714592ffa725b4b8d99c92f13dd5cb6ab82..3543d0b3b5882221a89ae518c6d3c93d51aecd7e 100644 (file)
@@ -79,7 +79,7 @@ defmodule Pleroma.Web.Endpoint do
     plug(Phoenix.CodeReloader)
   end
 
-  plug(Pleroma.Plugs.TrailingFormatPlug)
+  plug(Pleroma.Web.Plugs.TrailingFormatPlug)
   plug(Plug.RequestId)
   plug(Plug.Logger, log: :debug)
 
index 8b4d5fc9fe29eb3f022c67bea1427d8e07d45cbb..e3f57c14a90e7ff9837f1bd01e4a5080b980fc5f 100644 (file)
@@ -2,7 +2,7 @@
 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
 # SPDX-License-Identifier: AGPL-3.0-only
 
-defmodule Pleroma.Plugs.TrailingFormatPlug do
+defmodule Pleroma.Web.Plugs.TrailingFormatPlug do
   @moduledoc "Calls TrailingFormatPlug for specific paths. Ideally we would just do this in the router, but TrailingFormatPlug needs to be called before Plug.Parsers."
 
   @behaviour Plug