avatars_controller.rb 217 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 class Profiles::AvatarsController < Profiles::ApplicationController def destroy @user = current_user @user.remove_avatar! @user.save @user.reset_events_cache redirect_to profile_path end end