Packages
Event-driven notification system for Ash Framework with multiple transport types
Retired package: Release invalid - Use vulcora organization package
Current section
Files
Jump to
Current section
Files
lib/resource/dsl/audience_prefix.ex
defmodule AshDispatch.Resource.Dsl.AudiencePrefix do
@moduledoc """
DSL entity struct for audience prefix configuration.
Specifies a relationship prefix that all relationship-based audiences
should go through before resolving. Used by child resources that access
users through parent relationships.
"""
defstruct [
:prefix,
__spark_metadata__: nil
]
@type t :: %__MODULE__{
prefix: atom(),
__spark_metadata__: any()
}
end