自定义authenticate_user!在轨道中设计方法

时间:2015-05-28 13:24:39

标签: ruby-on-rails authentication ruby-on-rails-4 devise

我的用户模型上有一个布尔属性'boss',如何在我的before_filter中创建自定义authenticate_user!,以便只有user.boss == true的用户才能通过身份验证?

1 个答案:

答案 0 :(得分:-1)

before_filter do 
    redirect_to root_path unless current_user && current_user.boss?
end