ash_postgres/test/support/api.ex
Zach Daniel dae39f5fda feat: support expression based calculations
feat: support concat + if expressions
improvement: various other improvements
2021-06-04 01:48:35 -04:00

13 lines
327 B
Elixir

defmodule AshPostgres.Test.Api do
@moduledoc false
use Ash.Api
resources do
resource(AshPostgres.Test.Post)
resource(AshPostgres.Test.Comment)
resource(AshPostgres.Test.IntegerPost)
resource(AshPostgres.Test.Rating)
resource(AshPostgres.Test.PostLink)
resource(AshPostgres.Test.Author)
end
end