当设计before_filter:authenticate_user工作时,如何从我的应用程序重定向到特定链接

时间:2013-05-02 17:52:21

标签: ruby-on-rails-3 devise

这是我的类别控制器代码

   class CategoriesController < ApplicationController

     before_filter :authenticate_user! ,:except => :index

     def index
       #some code
     end

     def show
       #some code
     end

   end  

显然,您可以看到我的类别#index页面是公开可见的,其中列出了所有类别。当任何人在没有登录的情况下点击类别名称时,他/她将重定向到'localhost:3000 / users / sign_in'。

但我希望每当设计before_filter:authenticate_user时,该用户将重定向到某个网址,如“www.facebook.com”!工作

我怎么能做到这一点?

0 个答案:

没有答案