Fix rm_user task.

This commit is contained in:
eal 2018-04-18 17:39:27 +03:00
parent e153b364a7
commit 4e3fc530db
1 changed files with 2 additions and 2 deletions

View File

@ -1,14 +1,14 @@
defmodule Mix.Tasks.RmUser do
use Mix.Task
import Mix.Ecto
alias Pleroma.User
alias Pleroma.{User, Repo}
@shortdoc "Permanently delete a user"
def run([nickname]) do
ensure_started(Repo, [])
with %User{local: true} = user <- User.get_by_nickname(nickname) do
user.delete()
User.delete(user)
end
end
end