commit: 7fd4f4908bc31b3b4cc9d73a79169c3b3f08714c
parent 60c4ac0f708b4a67d6168ed327327dcb13e7219f
Author: Mark Felder <feld@FreeBSD.org>
Date: Thu, 3 Dec 2020 10:03:44 -0600
dump_key/2 no longer used
Diffstat:
1 file changed, 0 insertions(+), 10 deletions(-)
diff --git a/lib/mix/tasks/pleroma/config.ex b/lib/mix/tasks/pleroma/config.ex
@@ -289,16 +289,6 @@ defmodule Mix.Tasks.Pleroma.Config do
shell_info("config #{inspect(config.group)}, #{inspect(config.key)}, #{value}\r\n\r\n")
end
- defp dump_key(group, key) when is_atom(group) and is_atom(key) do
- ConfigDB
- |> Repo.all()
- |> Enum.filter(fn x ->
- if x.group == group && x.key == key do
- x |> dump
- end
- end)
- end
-
defp dump_group(group) when is_atom(group) do
%{group: group}
|> ConfigDB.get_by_params()