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

    @user.save

    redirect_to profile_path, status: 302
  end
end