Cache plug module name
authorAlexander Strizhakov <alex.strizhakov@gmail.com>
Wed, 24 Jun 2020 08:08:43 +0000 (11:08 +0300)
committerAlexander Strizhakov <alex.strizhakov@gmail.com>
Tue, 13 Oct 2020 13:43:57 +0000 (16:43 +0300)
lib/pleroma/web/activity_pub/activity_pub_controller.ex
lib/pleroma/web/plugs/cache.ex
test/pleroma/web/plugs/cache_test.exs

index 4bdb2e38bfeabbdee85d916298e858327c15934e..37e076f1b9be1cb96abd33fa9f19a495ac75ad87 100644 (file)
@@ -46,7 +46,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubController do
   )
 
   plug(
-    Pleroma.Plugs.Cache,
+    Pleroma.Web.Plugs.Cache,
     [query_params: false, tracking_fun: &__MODULE__.track_object_fetch/2]
     when action in [:activity, :object]
   )
index f65c2a1893daf81df4ac265638d121ad1badde45..6de01804afd71623ee6b1e8dbd8f603ee1d39f93 100644 (file)
@@ -2,19 +2,19 @@
 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
 # SPDX-License-Identifier: AGPL-3.0-only
 
-defmodule Pleroma.Plugs.Cache do
+defmodule Pleroma.Web.Plugs.Cache do
   @moduledoc """
   Caches successful GET responses.
 
   To enable the cache add the plug to a router pipeline or controller:
 
-      plug(Pleroma.Plugs.Cache)
+      plug(Pleroma.Web.Plugs.Cache)
 
   ## Configuration
 
   To configure the plug you need to pass settings as the second argument to the `plug/2` macro:
 
-      plug(Pleroma.Plugs.Cache, [ttl: nil, query_params: true])
+      plug(Pleroma.Web.Plugs.Cache, [ttl: nil, query_params: true])
 
   Available options:
 
index 105b170f00e5704243cdfa494f32d5fe1f699506..93a66f5d30bba870188ad8d63b1ea7f3a95fe9da 100644 (file)
@@ -6,7 +6,7 @@ defmodule Pleroma.Web.Plugs.CacheTest do
   use ExUnit.Case, async: true
   use Plug.Test
 
-  alias Pleroma.Plugs.Cache
+  alias Pleroma.Web.Plugs.Cache
 
   @miss_resp {200,
               [