summaryrefslogtreecommitdiff
path: root/app/controllers/profiles/avatars_controller.rb
blob: 829a87b7d0a1dff496f8b46e6c196463600a340b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class Profiles::AvatarsController < Profiles::ApplicationController
  feature_category :user_profile

  def destroy
    @user = current_user

    Users::UpdateService.new(current_user, user: @user).execute(&:remove_avatar!)

    redirect_to profile_path, status: :found
  end
end