Browse Source

Move static_fe config to its own section instead of in :instance.

fix/admin-api-grouped-reports-closed-reports
Phil Hagelberg 4 years ago
parent
commit
886a07ba57
2 changed files with 3 additions and 1 deletions
  1. +2
    -0
      config/config.exs
  2. +1
    -1
      lib/pleroma/plugs/static_fe_plug.ex

+ 2
- 0
config/config.exs View File

@@ -599,6 +599,8 @@ config :pleroma, Pleroma.ActivityExpiration, enabled: true

config :pleroma, Pleroma.Plugs.RemoteIp, enabled: false

config :pleroma, :static_fe, enabled: false

config :pleroma, :web_cache_ttl,
activity_pub: nil,
activity_pub_question: 30_000


+ 1
- 1
lib/pleroma/plugs/static_fe_plug.ex View File

@@ -18,7 +18,7 @@ defmodule Pleroma.Plugs.StaticFEPlug do
end
end

defp enabled?, do: Pleroma.Config.get([:instance, :static_fe], false)
defp enabled?, do: Pleroma.Config.get([:static_fe, :enabled], false)

defp accepts_html?(conn) do
conn |> get_req_header("accept") |> List.first() |> String.contains?("text/html")


Loading…
Cancel
Save