ash_cubdb/test/support/author.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

35 lines
498 B
Elixir

defmodule Support.Author do
@moduledoc false
use Ash.Resource, data_layer: AshCubDB.DataLayer
cubdb do
otp_app :ash_cubdb
end
multitenancy do
strategy(:context)
global?(true)
end
attributes do
uuid_primary_key(:id)
attribute(:name, :ci_string)
end
relationships do
has_many(:posts, Support.Post)
end
actions do
defaults(~w[create read]a)
end
code_interface do
define_for(Support.Api)
define(:create)
define(:read)
end
end