ash/test/support/policy_simple/registry.ex

16 lines
313 B
Elixir
Raw Normal View History

2022-07-22 02:19:47 +12:00
defmodule Ash.Test.Support.PolicySimple.Registry do
@moduledoc false
use Ash.Registry
2022-07-22 02:19:47 +12:00
alias Ash.Test.Support.PolicySimple, as: Simple
entries do
entry(Simple.User)
entry(Simple.Organization)
entry(Simple.Post)
entry(Simple.Car)
entry(Simple.CarUser)
entry(Simple.Trip)
end
end