forked from AkkomaGang/akkoma
Fix toggle_activated in mix task User
This commit is contained in:
parent
2592b3c81a
commit
a40ba3ba57
1 changed files with 5 additions and 2 deletions
|
@ -142,8 +142,11 @@ def run(["toggle_activated", nickname]) do
|
||||||
Common.start_pleroma()
|
Common.start_pleroma()
|
||||||
|
|
||||||
with %User{} = user <- User.get_by_nickname(nickname) do
|
with %User{} = user <- User.get_by_nickname(nickname) do
|
||||||
User.deactivate(user, !user.info["deactivated"])
|
{:ok, user} = User.deactivate(user, !user.info.deactivated)
|
||||||
Mix.shell().info("Activation status of #{nickname}: #{user.info["deactivated"]}")
|
|
||||||
|
Mix.shell().info(
|
||||||
|
"Activation status of #{nickname}: #{if(user.info.deactivated, do: "de", else: "")}activated"
|
||||||
|
)
|
||||||
else
|
else
|
||||||
_ ->
|
_ ->
|
||||||
Mix.shell().error("No user #{nickname}")
|
Mix.shell().error("No user #{nickname}")
|
||||||
|
|
Loading…
Reference in a new issue