ash/test/support/policy_rbac/resources/registry.ex

14 lines
257 B
Elixir
Raw Normal View History

2022-07-22 02:19:47 +12:00
defmodule Ash.Test.Support.PolicyRbac.Registry do
@moduledoc false
use Ash.Registry
2022-07-22 02:19:47 +12:00
alias Ash.Test.Support.PolicyRbac, as: Rbac
entries do
entry(Rbac.User)
entry(Rbac.Organization)
entry(Rbac.Membership)
entry(Rbac.File)
end
end