Browse Source

UploadedMedia module name

1668/default-disable-prometheus
Alexander Strizhakov 3 years ago
parent
commit
a5987155f7
No known key found for this signature in database GPG Key ID: 22896A53AEF1381
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      lib/pleroma/uploaders/uploader.ex
  2. +1
    -1
      lib/pleroma/web/endpoint.ex
  3. +1
    -1
      lib/pleroma/web/plugs/uploaded_media.ex

+ 1
- 1
lib/pleroma/uploaders/uploader.ex View File

@@ -12,7 +12,7 @@ defmodule Pleroma.Uploaders.Uploader do
@doc """
Instructs how to get the file from the backend.

Used by `Pleroma.Plugs.UploadedMedia`.
Used by `Pleroma.Web.Plugs.UploadedMedia`.
"""
@type get_method :: {:static_dir, directory :: String.t()} | {:url, url :: String.t()}
@callback get_file(file :: String.t()) :: {:ok, get_method()}


+ 1
- 1
lib/pleroma/web/endpoint.ex View File

@@ -12,7 +12,7 @@ defmodule Pleroma.Web.Endpoint do
plug(Pleroma.Plugs.SetLocalePlug)
plug(CORSPlug)
plug(Pleroma.Plugs.HTTPSecurityPlug)
plug(Pleroma.Plugs.UploadedMedia)
plug(Pleroma.Web.Plugs.UploadedMedia)

@static_cache_control "public, no-cache"



+ 1
- 1
lib/pleroma/web/plugs/uploaded_media.ex View File

@@ -2,7 +2,7 @@
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Plugs.UploadedMedia do
defmodule Pleroma.Web.Plugs.UploadedMedia do
@moduledoc """
"""



Loading…
Cancel
Save