gitlab-org--gitlab-foss/app/controllers/profiles/avatars_controller.rb

10 lines
259 B
Ruby
Raw Normal View History

2015-04-30 17:06:18 +00:00
class Profiles::AvatarsController < Profiles::ApplicationController
def destroy
@user = current_user
2017-09-27 09:48:33 +00:00
Users::UpdateService.new(current_user, user: @user).execute { |user| user.remove_avatar! }
2018-07-02 10:43:06 +00:00
redirect_to profile_path, status: :found
end
end