ash/test/support/policy_rbac/resources/organization.ex
2022-12-20 03:12:40 -05:00

25 lines
488 B
Elixir

defmodule Ash.Test.Support.PolicyRbac.Organization do
@moduledoc false
use Ash.Resource,
data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
actions do
defaults [:create, :read, :update, :destroy]
end
attributes do
uuid_primary_key(:id)
end
relationships do
has_many :memberships, Ash.Test.Support.PolicyRbac.Membership do
destination_attribute(:organization_id)
end
has_many :files, Ash.Test.Support.PolicyRbac.File
end
end