I am trying to make an authentification system using authlogic. I am following this tutorial.
First of I used "user" as they say, but many have said that it is not good due to som sort of collision with some rails 3 things. Thus I used "account" everywhere they say I should use "user".
So I have controllers called "AccountSession" and so on. This is the error I get:
undefined local variable or method `new_account_session_url' for #<HomeController:0x589f860>
....
app/controllers/application_controller.rb:24:in `require_account'
Everythin is exactly as it is written in that tutorial. (I have checked. Even though I might have missed something, so here is the code which I believe is causing the trouble.):
class ApplicationController < ActionController::Base
protect_from_forgery
helper_method :current_account_session, :current_account
private
def current_account_session
logger.debug "ApplicationController::current_account_session"
return @current_account_session if defined?(@current_account_session)
@current_account_session = AccountSession.find
end
def current_account
logger.debug "ApplicationController::current_account"
return @current_account if defined?(@current_account)
@current_account = current_account_session && current_account_session.account
end
def require_account
logger.debug "ApplicationController::require_account"
unless current_account
store_location
flash[:notice] = "You must be logged in to access this page"
redirect_to new_account_session_url
return false
end
end
def require_no_account
logger.debug "ApplicationController::require_no_account"
if current_account
store_location
flash[:notice] = "You must be logged out to access this page"
redirect_to account_url
return false
end
end
def store_location
session[:return_to] = request.request_uri
end
def redirect_back_or_default(default)
redirect_to(session[:return_to] || default)
session[:return_to] = nil
end
end
So, what to do?
Thanks :)
rake routesto see what your application generates. It really helps when debugging situations like this. However when posting on forums its best to just give the routes file. – Devin M Jun 16 '11 at 16:04