ash/test/support/policy_complex/registry.ex

14 lines
273 B
Elixir
Raw Normal View History

defmodule Ash.Test.Support.PolicyComplex.Registry do
@moduledoc false
use Ash.Registry
alias Ash.Test.Support.PolicyComplex, as: Complex
entries do
entry(Complex.User)
entry(Complex.FriendLink)
entry(Complex.Post)
entry(Complex.Comment)
end
end