作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 active_for_authentication?只允许活跃用户通过设计登录。但它不起作用。
我的 Controller :
class DashboardUsersController < ApplicationController
def active_for_authentication?
super && self.deactivated_ind
end
def inactive_message
"Sorry, this account has been deactivated."
end
我的模型:
class DashboardUser < ActiveRecord::Base
devise :database_authenticatable,:rememberable, :trackable, :validatable, :timeoutable
attr_accessor :login
def self.find_first_by_auth_conditions(warden_conditions)
conditions = warden_conditions.dup
if login = conditions.delete(:login)
where(conditions).where(["username = :value OR lower(email) = lower(:value)", { :value => login }]).first
else
where(conditions).first
end
end
end
我的用户表:
t.string "deactivated_ind", limit: 1
t.date "deactivated_date"
通过使用 deactivated_ind Y/N i 检查用户是否活跃。现在我想让设计只登录那些在 deactivated_ind colomn 中有 N 的用户
最佳答案
active_for_authentication?
需要是模型 上的方法,而不是 Controller 上的方法
(在你的情况下不是问题,但在我的情况下)active_for_authentication?
必须是模型上的public 方法
关于ruby-on-rails - active_for_authentication?不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26859346/
我正在使用 active_for_authentication?只允许活跃用户通过设计登录。但它不起作用。 我的 Controller : class DashboardUsersController
我正在尝试实现“禁用用户”功能。从各种来源,我读到可以在我的 user.rb 中关注 def active_for_authentication? super && disabled_at
我是一名优秀的程序员,十分优秀!