ash_cubdb/test/support/post.ex
James Harton 74d878b70e
All checks were successful
continuous-integration/drone/push Build is passing
feat: create and read works.
2023-09-29 20:30:42 +13:00

34 lines
543 B
Elixir

defmodule Support.Post do
@moduledoc false
use Ash.Resource, data_layer: AshCubDB.DataLayer
cubdb do
otp_app :ash_cubdb
end
attributes do
uuid_primary_key(:id) do
writable?(true)
end
attribute(:title, :string)
attribute(:body, :string)
end
actions do
# defaults ~w[create read update destroy]a
defaults(~w[create read]a)
end
relationships do
belongs_to(:author, Support.Author)
end
code_interface do
define_for(Support.Api)
define(:create)
define(:read)
end
end