ash_admin/dev/resources/tickets/registry.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
298 B
Elixir

defmodule Demo.Tickets.Registry do
use Ash.Registry
alias Demo.Tickets.{Comment, Customer, Representative, Ticket, TicketLink, Organization}
entries do
entry(Customer)
entry(Representative)
entry(Ticket)
entry(Comment)
entry(TicketLink)
entry(Organization)
end
end