ash_admin/dev/resources/accounts/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
191 B
Elixir

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