ash/test/support/rbac/resources/membership.ex

37 lines
704 B
Elixir
Raw Normal View History

defmodule Ash.Policy.Test.Rbac.Membership do
@moduledoc false
use Ash.Resource,
data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
attributes do
uuid_primary_key(:id)
attribute :role, :atom do
allow_nil?(false)
constraints(one_of: [:admin, :member, :viewer])
end
attribute :resource, :atom do
allow_nil?(false)
constraints(one_of: [:file])
end
attribute :resource_id, :uuid do
allow_nil?(false)
end
end
actions do
defaults [:create, :read, :update, :destroy]
end
relationships do
belongs_to(:user, Ash.Policy.Test.Rbac.User)
belongs_to(:organization, Ash.Policy.Test.Rbac.Organization)
end
end