disabling Devise registration for production environment only

前端 未结 4 455
南旧
南旧 2020-12-22 16:16

I am launching a beta site with a select group of users. I want to disable registration in the production environment only, and only for a short period of time (i.e. I don\'

4条回答
  •  天命终不由人
    2020-12-22 17:05

    Edit the user model and remove :registerable, I think that should give you what you want.

    Edit:

    I think this would work:

    if Rails.env.production?
      devise :database_authenticatable, :recoverable, :rememberable, :trackable, :validatable
    else
      devise :database_authenticatable, :recoverable, :rememberable, :trackable, :validatable, :registerable 
    end
    

提交回复
热议问题