Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 :)

share|improve this question
1  
Can you post your routes.rb file? – dpb Jun 16 '11 at 15:16
1  
You can also run rake routes to 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
Sorry I havent posted the routes file yet. I will not be able to until tomorrow (it't at another computer). – Cort3z Jun 16 '11 at 21:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.