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

13 lines
311 B
Ruby

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