logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 56cfe7185852320b740392e0f58ce096b6cbecb6
parent: 765671a5b0eea5f906f333f39f03289a59506bb6
Author: lain <lain@soykaf.club>
Date:   Wed, 21 Feb 2018 18:33:36 +0100

Add moderator task.

Diffstat:

Alib/mix/tasks/make_moderator.ex27+++++++++++++++++++++++++++
1 file changed, 27 insertions(+), 0 deletions(-)

diff --git a/lib/mix/tasks/make_moderator.ex b/lib/mix/tasks/make_moderator.ex @@ -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