ash/test/support/policy_complex/registry.ex
2023-03-29 09:19:49 -04:00

14 lines
296 B
Elixir

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)
entry(Complex.Bio)
end
end