ash_csv/test/support/resources/comment.ex
2021-01-22 01:07:24 -05:00

25 lines
410 B
Elixir

defmodule AshCsv.Test.Comment do
@moduledoc false
use Ash.Resource,
data_layer: AshCsv.DataLayer
csv do
create? true
columns [:id, :title]
file "test/data_files/comments.csv"
end
actions do
read(:read)
create(:create)
end
attributes do
uuid_primary_key(:id)
attribute(:title, :string)
end
relationships do
belongs_to(:post, AshCsv.Test.Post)
end
end