9 lines
256 B
Ruby
9 lines
256 B
Ruby
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: 302
|
|
end
|
|
end
|