forked from AkkomaGang/akkoma
Fix deletion regression due to strings instead of atoms
Improve message after successful deletion
This commit is contained in:
parent
c6a0ca2213
commit
ae7d37de06
1 changed files with 26 additions and 3 deletions
|
@ -131,11 +131,34 @@ def run(["reset"]) do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def run(["delete" | args]) when is_list(args) and length(args) == 2 do
|
def run(["delete", group]) do
|
||||||
with true <- Pleroma.Config.get([:configurable_from_database]) do
|
with true <- Pleroma.Config.get([:configurable_from_database]) do
|
||||||
start_pleroma()
|
start_pleroma()
|
||||||
|
|
||||||
[group, key] = args
|
group = group |> String.to_atom()
|
||||||
|
|
||||||
|
if shell_prompt("Are you sure you want to continue?", "n") in ~w(Yn Y y) do
|
||||||
|
ConfigDB
|
||||||
|
|> Repo.all()
|
||||||
|
|> Enum.filter(fn x ->
|
||||||
|
if x.group == group do
|
||||||
|
x |> delete(true)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
else
|
||||||
|
shell_info("No changes made.")
|
||||||
|
end
|
||||||
|
else
|
||||||
|
_ -> configdb_not_enabled()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def run(["delete", group, key]) do
|
||||||
|
with true <- Pleroma.Config.get([:configurable_from_database]) do
|
||||||
|
start_pleroma()
|
||||||
|
|
||||||
|
group = group |> String.to_atom()
|
||||||
|
key = key |> String.to_atom()
|
||||||
|
|
||||||
if shell_prompt("Are you sure you want to continue?", "n") in ~w(Yn Y y) do
|
if shell_prompt("Are you sure you want to continue?", "n") in ~w(Yn Y y) do
|
||||||
ConfigDB
|
ConfigDB
|
||||||
|
@ -273,7 +296,7 @@ defp write(config, file) do
|
||||||
|
|
||||||
defp delete(config, true) do
|
defp delete(config, true) do
|
||||||
{:ok, _} = Repo.delete(config)
|
{:ok, _} = Repo.delete(config)
|
||||||
shell_info("#{config.key} deleted from the ConfigDB.")
|
shell_info(":#{config.group}, :#{config.key} deleted from the ConfigDB.")
|
||||||
end
|
end
|
||||||
|
|
||||||
defp delete(_config, _), do: :ok
|
defp delete(_config, _), do: :ok
|
||||||
|
|
Loading…
Reference in a new issue