我正在尝试使用declarative_authorization gem 创建项目管理员和项目协作者角色。
我有一个名为“合作者”的表,它将用户保存到项目映射中。
楷模:
项目
has_many :collaborators
has_many :users, :through => :collaborators
用户
has_many :collaborators
has_many :projects, :through => :collaborators
合作者
belongs_to :user
belongs_to :project
我需要一些关于为 project_admin 和 project_collaborator 角色定义 dsl 的指导。我想出了以下几点:
authorization do
role :guest do
has_permission_on :users, :to => [:read]
end
role :project_admin do
has_permission_on :projects, :to => :manage do
if_attribute :project_admin => true
end
end
role :admin do
has_permission_on :users, :to => [:delete]
end
end
privileges do
privilege :manage do
includes :create, :read, :update, :delete
end
end
感谢任何建议/帮助。
谢谢!