ash_admin/test/support/domain.ex

15 lines
233 B
Elixir
Raw Normal View History

2024-03-30 02:48:44 +13:00
defmodule AshAdmin.Test.Domain do
@moduledoc false
use Ash.Domain,
extensions: [AshAdmin.Domain]
admin do
show? true
end
resources do
resource(AshAdmin.Test.Post)
resource(AshAdmin.Test.Comment)
2024-03-30 02:48:44 +13:00
end
end