summaryrefslogtreecommitdiff
path: root/app/controllers/profiles/avatars_controller.rb
blob: 408650aac548c0324dc9004f0edfd7abb0e49f36 (plain)
1
2
3
4
5
6
7
8
9
class Profiles::AvatarsController < Profiles::ApplicationController
  def destroy
    @user = current_user

    Users::UpdateService.new(@user).execute { |user| user.remove_avatar! }

    redirect_to profile_path, status: 302
  end
end