2015-09-11 14:41:01 +05:30
|
|
|
class Profiles::AvatarsController < Profiles::ApplicationController
|
2014-09-02 18:07:02 +05:30
|
|
|
def destroy
|
|
|
|
@user = current_user
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
Users::UpdateService.new(@user).execute { |user| user.remove_avatar! }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
redirect_to profile_path, status: 302
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|