如何向 Rails 站点添加 Beta 代码身份验证?
我有两个不同的页面,一个是输入测试代码,另一个是实际注册。在访问注册页面之前,必须首先输入正确的测试密钥。
当用户单击提交按钮时,如何使用 Beta 密钥列表检查输入,然后重定向到注册页面。我真正想做的是,当用户单击“提交”时调用一个帮助程序,该帮助程序能够从测试版代码文本框中获取信息。
I have two different pages, one is to enter the beta code, and the other is to actually sign up. Before gaining access to the signup page one must first enter a correct beta key.
How can I check the input, when the user clicks the submit button, with a list of beta keys and then redirect to the sign up page. What I actually want to do is call a helper when the user clicks submit that is able to take the info from the beta code textbox.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的称为白名单。有关示例,请参阅使用 devise 列入白名单。
What you're looking for is called whitelisting. See Whitelisting with devise for examples.