debian-mirror-gitlab/app/controllers/profiles/avatars_controller.rb
2018-12-05 23:21:45 +05:30

12 lines
290 B
Ruby

# frozen_string_literal: true
class Profiles::AvatarsController < Profiles::ApplicationController
def destroy
@user = current_user
Users::UpdateService.new(current_user, user: @user).execute { |user| user.remove_avatar! }
redirect_to profile_path, status: :found
end
end