ash_admin/dev/resources/tickets/api.ex
Zach Daniel deac48365d fix: a bunch of behavior fixes, getting the demo to snuff with new Ash
improvement: update tons of dependencies
2022-03-17 14:18:01 -04:00

13 lines
189 B
Elixir

defmodule Demo.Tickets.Api do
@moduledoc false
use Ash.Api,
extensions: [AshAdmin.Api]
admin do
show? true
end
resources do
registry Demo.Tickets.Registry
end
end