forked from AkkomaGang/akkoma
fix for info after tag/untag user
This commit is contained in:
parent
c2edfd16e0
commit
d5fcec8315
1 changed files with 6 additions and 2 deletions
|
@ -15,6 +15,8 @@ defmodule Mix.Tasks.Pleroma.User do
|
|||
@moduledoc File.read!("docs/administration/CLI_tasks/user.md")
|
||||
|
||||
def run(["new", nickname, email | rest]) do
|
||||
Application.ensure_all_started(:flake_id)
|
||||
|
||||
{options, [], []} =
|
||||
OptionParser.parse(
|
||||
rest,
|
||||
|
@ -97,6 +99,7 @@ def run(["new", nickname, email | rest]) do
|
|||
|
||||
def run(["rm", nickname]) do
|
||||
start_pleroma()
|
||||
Application.ensure_all_started(:flake_id)
|
||||
|
||||
with %User{local: true} = user <- User.get_cached_by_nickname(nickname),
|
||||
{:ok, delete_data, _} <- Builder.delete(user, user.ap_id),
|
||||
|
@ -232,7 +235,7 @@ def run(["tag", nickname | tags]) do
|
|||
with %User{} = user <- User.get_cached_by_nickname(nickname) do
|
||||
user = user |> User.tag(tags)
|
||||
|
||||
shell_info("Tags of #{user.nickname}: #{inspect(tags)}")
|
||||
shell_info("Tags of #{user.nickname}: #{inspect(user.tags)}")
|
||||
else
|
||||
_ ->
|
||||
shell_error("Could not change user tags for #{nickname}")
|
||||
|
@ -245,7 +248,7 @@ def run(["untag", nickname | tags]) do
|
|||
with %User{} = user <- User.get_cached_by_nickname(nickname) do
|
||||
user = user |> User.untag(tags)
|
||||
|
||||
shell_info("Tags of #{user.nickname}: #{inspect(tags)}")
|
||||
shell_info("Tags of #{user.nickname}: #{inspect(user.tags)}")
|
||||
else
|
||||
_ ->
|
||||
shell_error("Could not change user tags for #{nickname}")
|
||||
|
@ -328,6 +331,7 @@ def run(["revoke_invite", token]) do
|
|||
|
||||
def run(["delete_activities", nickname]) do
|
||||
start_pleroma()
|
||||
Application.ensure_all_started(:flake_id)
|
||||
|
||||
with %User{local: true} = user <- User.get_cached_by_nickname(nickname) do
|
||||
User.delete_user_activities(user)
|
||||
|
|
Loading…
Reference in a new issue