如何创建第一个(管理员)用户(CanCan 和 Devise)?

发布于 2024-10-20 05:13:47 字数 278 浏览 3 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

两个我 2024-10-27 05:13:47

您可以从 Rails 控制台执行此操作。从命令行转到 Rails 应用程序的目录并输入 rails console。然后输入以下代码来创建用户:

user=User.create!(:email=>'[email protected]',:username=>'test',:password=>'password')

这将创建一个用户对象(假设您的设备资源称为 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:

user=User.create!(:email=>'[email protected]',:username=>'test',:password=>'password')

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.

难如初 2024-10-27 05:13:47

我当前在 seeds.rb 文件中使用类似的内容(您的详细信息可能不同)来为 Devise 创建管理员用户。

User.new({ :email => '[email protected]', :password => 'password', :password_confirmation => 'password'}).save

您可以在终端窗口中使用 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.

User.new({ :email => '[email protected]', :password => 'password', :password_confirmation => 'password'}).save

You can execute it using rake db:seed in the terminal window.

稀香 2024-10-27 05:13:47

此外,如果您使用的是可确认的,并且想要在创建新帐户时跳过确认电子邮件的要求,您可以执行以下操作:

newuser = User.new({ :email => '[email protected]', 
          :password => 'password', 
          :password_confirmation => 'password'})
newuser.skip_confirmation!
newuser.save

如果您正在创建的帐户是为受信任的用户创建的,或者您正在创建测试帐户,则这非常有用。

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:

newuser = User.new({ :email => '[email protected]', 
          :password => 'password', 
          :password_confirmation => 'password'})
newuser.skip_confirmation!
newuser.save

This is useful if the accounts you are creating are for trusted users or if you are creating test accounts.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文