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

11 lines
188 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
redirect_to profile_path
end
end