ash_admin/test/support/api.ex

14 lines
192 B
Elixir
Raw Normal View History

2022-05-26 04:17:52 +12:00
defmodule AshAdmin.Test.Api do
2022-05-26 04:18:54 +12:00
@moduledoc false
2022-05-26 04:17:52 +12:00
use Ash.Api,
extensions: [AshAdmin.Api]
admin do
show? true
end
resources do
registry(AshAdmin.Test.Registry)
end
end