I implemented Devise and followed the instructions for installing Rapidfire and for the application controller I have
def current_user
current_user
end
def can_administer
true
end
but on the page I realized that something went wrong, and if I look in the console, it says
ActionView::Template::Error (stack level too deep)
app/controllers/application_controller.rb:7
which is a string current_user.
Can someone tell me what is going on?
micc0 source
share