ash/test/support/policy_simple/resources/organization.ex

29 lines
626 B
Elixir

defmodule Ash.Test.Support.PolicySimple.Organization do
@moduledoc false
use Ash.Resource,
data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
actions do
defaults [:read, :update, :destroy]
create(:create) do
primary? true
argument(:owner, :uuid)
change(manage_relationship(:owner, type: :append_and_remove))
end
end
attributes do
uuid_primary_key(:id)
end
relationships do
has_many(:users, Ash.Test.Support.PolicySimple.User)
has_many(:posts, Ash.Test.Support.PolicySimple.Post)
belongs_to(:owner, Ash.Test.Support.PolicySimple.User)
end
end