InstanceStatic module name
authorAlexander Strizhakov <alex.strizhakov@gmail.com>
Wed, 24 Jun 2020 07:03:10 +0000 (10:03 +0300)
committerAlexander Strizhakov <alex.strizhakov@gmail.com>
Tue, 13 Oct 2020 13:43:55 +0000 (16:43 +0300)
lib/pleroma/web/endpoint.ex
lib/pleroma/web/fallback/redirect_controller.ex
lib/pleroma/web/plugs/instance_static.ex

index 003bb1194a642af5d96e2b461e72011aaf2d0cf1..db39715588a609245d4889c23313cd585bbdf924 100644 (file)
@@ -19,7 +19,7 @@ defmodule Pleroma.Web.Endpoint do
   # InstanceStatic needs to be before Plug.Static to be able to override shipped-static files
   # If you're adding new paths to `only:` you'll need to configure them in InstanceStatic as well
   # Cache-control headers are duplicated in case we turn off etags in the future
-  plug(Pleroma.Plugs.InstanceStatic,
+  plug(Pleroma.Web.Plugs.InstanceStatic,
     at: "/",
     gzip: true,
     cache_control_for_etags: @static_cache_control,
index a7b36a34b7b1253cf404c42483d2377a8be94abe..6f759d559648cc2cb9ebe34f40ce15102d6ebf9e 100644 (file)
@@ -75,7 +75,7 @@ defmodule Pleroma.Web.Fallback.RedirectController do
   end
 
   defp index_file_path do
-    Pleroma.Plugs.InstanceStatic.file_path("index.html")
+    Pleroma.Web.Plugs.InstanceStatic.file_path("index.html")
   end
 
   defp build_tags(conn, params) do
index 0fb57e42257f5927cd6c7e6299782d8526ff9c4f..3e6aa826b0fa5ff556417843084c523f95f5c48f 100644 (file)
@@ -2,7 +2,7 @@
 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
 # SPDX-License-Identifier: AGPL-3.0-only
 
-defmodule Pleroma.Plugs.InstanceStatic do
+defmodule Pleroma.Web.Plugs.InstanceStatic do
   require Pleroma.Constants
 
   @moduledoc """