Welcome to mirror list, hosted at ThFree Co, Russian Federation.

avatars_controller.rb « profiles « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9e4b9a149d9a010ba32d7a9fef39afcfb1d5cec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class Profiles::AvatarsController < Profiles::ApplicationController
  feature_category :users

  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