ash_phoenix/test/support/resources/post_link.ex
2022-09-14 13:21:36 -04:00

17 lines
420 B
Elixir

defmodule AshPhoenix.Test.PostLink do
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
actions do
defaults([:create, :update, :destroy])
end
relationships do
belongs_to(:source_post, AshPhoenix.Test.Post, primary_key?: true, allow_nil?: false)
belongs_to(:destination_post, AshPhoenix.Test.Post, primary_key?: true, allow_nil?: false)
end
end