Add moderator task.

This commit is contained in:
lain 2018-02-21 18:33:36 +01:00
parent 765671a5b0
commit 56cfe71858
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
defmodule Mix.Tasks.SetModerator do
use Mix.Task
import Mix.Ecto
alias Pleroma.{Repo, User}
@shortdoc "Set moderator status"
def run([nickname | rest]) do
ensure_started(Repo, [])
moderator = case rest do
[moderator] -> moderator == "true"
_ -> true
end
with %User{local: true} = user <- User.get_by_nickname(nickname) do
info = user.info
|> Map.put("is_moderator", !!moderator)
cng = User.info_changeset(user, %{info: info})
user = Repo.update!(cng)
IO.puts "Moderator status of #{nickname}: #{user.info["is_moderator"]}"
else
_ ->
IO.puts "No local user #{nickname}"
end
end
end