使用admin命名空间在rails上重定向循环

时间:2012-02-15 18:02:18

标签: ruby-on-rails ruby ruby-on-rails-3

我有一个从Admin :: ApplicationController扩展的Admin :: SessionsController。 我使用的是before_filter,但登录页面除外,但服务器正在进入循环 我认为除了东西之外还有其他东西,我认为我需要设置命名空间或其他东西......

这是before_filte:

的行
before_filter :authenticate_user ,  :except => { :sessions => :new }

这是我的SessionController

class Admin::SessionsController < Admin::ApplicationController
    def new
    end
end

1 个答案:

答案 0 :(得分:1)

将skip_before_filter放入Admin:SessionsController

可能最简单
class Admin::SessionsController < Admin::ApplicationController
  skip_before_filter :authenticate_user, :only => [:new]

  def new
  end

end