标签: ruby-on-rails authentication ruby-on-rails-4 devise
我的用户模型上有一个布尔属性'boss',如何在我的before_filter中创建自定义authenticate_user!,以便只有user.boss == true的用户才能通过身份验证?
authenticate_user!
user.boss == true
答案 0 :(得分:-1)
before_filter do redirect_to root_path unless current_user && current_user.boss? end