14

我们有一个现有的用户群,并且正在添加电子邮件确认。确认是可选的,但将允许附加功能。用户无需确认。我添加了可确认模块并运行了迁移。确认工作如广告。

但是,用户无法登录,因为他们没有得到确认。所有当前用户都有 nil 确认值,这是我们想要的(用户可以随时返回并确认他们的电子邮件)。我已经关注了所有的 Devise wiki 文章并在初始化程序中设置了 allow_unconfirmed_access_for :

config.allow_unconfirmed_access_for = 10.years 

我也尝试在我们的用户模型中设置它:

devise :confirmable, allow_unconfirmed_access_for: 10.years

我也尝试过使用其他值(1.year、500.days 等)

我的 SessionsController,与 Devise 的方法没有太大区别(在 github 上

class Users::SessionsController < Devise::SessionsController
  respond_to :json

  def new
    redirect_to "/#login"
  end

  def create
    resource = warden.authenticate(auth_options)
    if !resource
      render json: {error: "Invalid email or password" }, status: 401 and return
    end

    sign_in(resource_name, resource)
    render "sign_in", formats: [:json], locals: { object: resource }
  end
end

设计的回应:

{"error":"您必须在继续之前确认您的帐户。"}

使用 Rails 3.2.9 设计 2.1.2。

4

3 回答 3

21

Devise 团队发布了一个版本 (2.2.4),它支持 nil 作为allow_unconfirmed_access_for的有效值,这意味着没有限制。问题:https ://github.com/plataformatec/devise/issues/2275

您现在可以执行以下操作:

config.allow_unconfirmed_access_for = nil 
于 2013-05-08T11:39:03.673 回答
18

我只需要在我的用户模型中执行此操作,而不是使用 allow_unconfirmed_access_for:

  protected
    def confirmation_required?
      false
    end
于 2013-01-17T17:57:01.863 回答
0

我遇到了同样的问题:打开设计确认后,以前创建的帐户无法登录。

原因在这里:

def confirmation_period_valid?
  self.class.allow_unconfirmed_access_for.nil? || (confirmation_sent_at && confirmation_sent_at.utc >= self.class.allow_unconfirmed_access_for.ago)
end

旧帐户的 Confirmation_sent_at 设置为 nil,这就是他们无法登录的原因。

一种解决方案是像这样强制confirmation_sent_at:

update users set confirmation_sent_at=created_at where confirmation_sent_at is NULL;

您可以手动完成,也可以创建迁移。

于 2016-02-05T10:19:32.337 回答