10 lines
188 B
Ruby
10 lines
188 B
Ruby
class Profiles::AvatarsController < Profiles::ApplicationController
|
|
def destroy
|
|
@user = current_user
|
|
@user.remove_avatar!
|
|
|
|
@user.save
|
|
|
|
redirect_to profile_path
|
|
end
|
|
end
|