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

    Users::UpdateService.new(@user, @user).execute

    redirect_to profile_path, status: 302
  end
end