ash/test/support/policy_rbac/resources/registry.ex
2022-07-21 10:19:47 -04:00

13 lines
257 B
Elixir

defmodule Ash.Test.Support.PolicyRbac.Registry do
@moduledoc false
use Ash.Registry
alias Ash.Test.Support.PolicyRbac, as: Rbac
entries do
entry(Rbac.User)
entry(Rbac.Organization)
entry(Rbac.Membership)
entry(Rbac.File)
end
end