ash_phoenix/test/support/resources/post_link.ex

18 lines
420 B
Elixir
Raw Normal View History

defmodule AshPhoenix.Test.PostLink do
2021-07-13 09:19:17 +12:00
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
actions do
defaults([:create, :update, :destroy])
end
relationships do
2022-09-15 05:21:28 +12:00
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