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
ash_dispatch lib resource dsl audience_prefix.ex
Raw

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