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: cab9ea24270245ec038ce57d7d00fbe839411501 (plain)
1
2
3
4
5
6
7
8
9
10
11
class Profiles::AvatarsController < Profiles::ApplicationController
  def destroy
    @user = current_user

    Users::UpdateService.new(@user, @user).execute do |user|
      user.remove_avatar!
    end

    redirect_to profile_path, status: 302
  end
end