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: 57f3bbf0627ad4d79fe4e712b2f8504ec5c3cf46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Profiles::AvatarsController < ApplicationController
  layout "profile"

  def destroy
    @user = current_user
    @user.remove_avatar!

    @user.save
    @user.reset_events_cache

    redirect_to profile_path
  end
end