debian-mirror-gitlab/app/controllers/profiles/avatars_controller.rb

12 lines
217 B
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
class Profiles::AvatarsController < Profiles::ApplicationController
2014-09-02 18:07:02 +05:30
def destroy
@user = current_user
@user.remove_avatar!
@user.save
@user.reset_events_cache
redirect_to profile_path
end
end