如何创建第一个(管理员)用户(CanCan 和 Devise)?
我在 Rails 3 应用程序中进行了身份验证 Tony 的教程
我不想在我的应用程序上进行公共注册,只是为了使用管理员帐户创建新用户,但我无法手动创建管理员帐户,因为在表 Users 中有加密的密码和必须生成的盐,但我不知道如何生成:|
I made authentication in my Rails 3 app fallowed by Tony's tutorial
I don't want public registrations on my app, just to create new users with Admin account, but I can't create Admin account manually, because in table Users there is encrypted password and salt that must to be generated, and I don't know how :|
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以从 Rails 控制台执行此操作。从命令行转到 Rails 应用程序的目录并输入
rails console
。然后输入以下代码来创建用户:这将创建一个用户对象(假设您的设备资源称为 User)。现在您可以使用刚刚创建的用户对象来设置管理员权限。
You can do it from the rails console. From the command line goto the directory of your rails application and type
rails console
. Then enter the following code to create a user:This will create a user object (assuming your devise resource is called User). Now you can use the user object that you just created to set admin privileges.
我当前在 seeds.rb 文件中使用类似的内容(您的详细信息可能不同)来为 Devise 创建管理员用户。
您可以在终端窗口中使用
rake db:seed
执行它。I am current something like this (your details may be different) in my seeds.rb file to create my admin user for Devise.
You can execute it using
rake db:seed
in the terminal window.此外,如果您使用的是可确认的,并且想要在创建新帐户时跳过确认电子邮件的要求,您可以执行以下操作:
如果您正在创建的帐户是为受信任的用户创建的,或者您正在创建测试帐户,则这非常有用。
In addition, if you are using confirmable and want to skip the requirement for a confirmation email when creating new accounts you can do something like this:
This is useful if the accounts you are creating are for trusted users or if you are creating test accounts.