pleroma/lib/pleroma/config/deprecation_warnings.ex

21 lines
561 B
Elixir
Raw Normal View History

2019-01-28 12:09:41 +01:00
# Pleroma: A lightweight social networking server
2020-03-03 23:44:49 +01:00
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
2019-01-28 12:09:41 +01:00
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Config.DeprecationWarnings do
2019-01-28 12:09:41 +01:00
require Logger
def check_hellthread_threshold do
if Pleroma.Config.get([:mrf_hellthread, :threshold]) do
2019-02-03 22:46:06 +01:00
Logger.warn("""
!!!DEPRECATION WARNING!!!
You are using the old configuration mechanism for the hellthread filter. Please check config.md.
""")
end
2019-01-28 12:09:41 +01:00
end
def warn do
check_hellthread_threshold()
2019-01-28 12:09:41 +01:00
end
end