ash_phoenix/test/support/resources/post.ex

37 lines
876 B
Elixir
Raw Normal View History

defmodule AshPhoenix.Test.Post do
2021-07-13 09:19:17 +12:00
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
attributes do
uuid_primary_key(:id)
attribute(:text, :string)
end
actions do
create :create do
argument(:comments, {:array, :map})
change(manage_relationship(:comments, type: :replace))
end
update :update do
argument(:comments, {:array, :map})
change(manage_relationship(:comments, type: :replace))
end
end
relationships do
has_many(:comments, AshPhoenix.Test.Comment)
has_one(:featured_comment, AshPhoenix.Test.Comment, read_action: :featured)
many_to_many(:linked_posts, AshPhoenix.Test.Post,
through: AshPhoenix.Test.PostLink,
destination_field_on_join_table: :destination_post_id,
source_field_on_join_table: :source_post_id
)
end
end