13 lines
227 B
Ruby
13 lines
227 B
Ruby
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
|