gpt4 book ai didi

ruby-on-rails - 设计 - 在开发中跳过用户确认

转载 作者:数据小太阳 更新时间:2023-10-29 07:48:04 26 4
gpt4 key购买 nike

如何在设计中跳过开发中的用户确认。

我已将生产环境设置为使用 SendGrid 发送电子邮件,但现在我已完成,它不会让我登录。

感谢您的宝贵时间!

最佳答案

在控制台中创建用户:

user = User.create( 
:first_name => 'admin',
:last_name => 'admin',
:email => 'foo...@email.com',
:password => 'password1',
:password_confirmation => 'password1'
).skip_confirmation!
# Devise :doc:
# If you don't want confirmation to be sent on create, neither a code
# to be generated, call skip_confirmation!

或在模型中:

 after_create :skip_conf!

def skip_conf!
self.confirm! if Rails.env.development?
end

关于ruby-on-rails - 设计 - 在开发中跳过用户确认,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21168996/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com