# `PhiaUi.Collab.Supervisor`
[🔗](https://github.com/charlenopires/PhiaUI/blob/v0.1.17/lib/phia_ui/collab/supervisor.ex#L1)

Top-level supervisor for PhiaUI collaboration infrastructure.

Starts the `RoomRegistry` (a `Registry` for unique room name lookups)
and `RoomSupervisor` (a `DynamicSupervisor` for on-demand room processes).

Add to your application supervision tree only if using collab features:

    # In MyApp.Application
    children = [
      # ... your other children ...
      PhiaUi.Collab.Supervisor
    ]

The strategy is `:one_for_all` because the `DynamicSupervisor` depends on
the `Registry` for name resolution — if either crashes both must restart.

# `child_spec`

Returns a specification to start this module under a supervisor.

See `Supervisor`.

# `start_link`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
