cleap up
This commit is contained in:
parent
d5fcec8315
commit
79707e879d
5 changed files with 15 additions and 15 deletions
|
|
@ -15,8 +15,6 @@ 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,
|
||||
|
|
@ -99,7 +97,6 @@ defmodule Mix.Tasks.Pleroma.User 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),
|
||||
|
|
@ -331,7 +328,6 @@ defmodule Mix.Tasks.Pleroma.User 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…
Add table
Add a link
Reference in a new issue