我看到了这个Rails Devise: How to access sign up page after signed in?并且它有效。现在我想知道如何允许管理员编辑一些用户。有什么投入?提前谢谢!
更新
我没有为管理员创建任何模型,因为我在User模型中迁移了admin:boolean。而且不需要cancancan。看看我如何使用管理员:
<% if current_user.admin? %>
<!-- do something only the admin is allowed to do-->
<% else %>
<!-- do something by user that can also be done by the admin-->
<% end %>