Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个从Rails Composer、Devise、CanCan、Twitter Bootstrap 开始的应用程序。
我知道如何使用能力模型设置用户权限。如何添加更多角色以赋予某些权限?
我在搜索过程中找不到任何帮助,所以这是我自己想出的。
在 rolify 和 rails composer 之间的某个地方,创建了一个角色表。
进入 rails 控制台
$ rails c
添加您的新角色
irb> Role.create name: 'new-role'
*用它来显示你所有的角色
irb> Role.all
*删除角色
irb> Role.delete(role_id)