summaryrefslogtreecommitdiff
path: root/lib/api/users.rb
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2017-06-02 14:18:24 +0100
committerNick Thomas <nick@gitlab.com>2017-06-05 13:08:06 +0100
commit158581a447bb4976161eca26ddcb2fccd25888ab (patch)
tree37c8ba0b0c21059246f351acb318e4f848606297 /lib/api/users.rb
parentc34107608ecc5c36e80a748eb4c9b88d2b1157cf (diff)
downloadgitlab-ce-158581a447bb4976161eca26ddcb2fccd25888ab.tar.gz
Refactor the DeleteUserWorker
Diffstat (limited to 'lib/api/users.rb')
-rw-r--r--lib/api/users.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/users.rb b/lib/api/users.rb
index 2070dbd8bc7..e8694e90cf2 100644
--- a/lib/api/users.rb
+++ b/lib/api/users.rb
@@ -293,7 +293,7 @@ module API
user = User.find_by(id: params[:id])
not_found!('User') unless user
- DeleteUserWorker.perform_async(current_user.id, user.id, hard_delete: params[:hard_delete])
+ user.delete_async(deleted_by: current_user, params: params)
end
desc 'Block a user. Available only for admins.'