debian-mirror-gitlab/app/controllers/profiles/avatars_controller.rb
2017-08-17 22:00:37 +05:30

10 lines
188 B
Ruby

class Profiles::AvatarsController < Profiles::ApplicationController
def destroy
@user = current_user
@user.remove_avatar!
@user.save
redirect_to profile_path
end
end