Path helpers for the dashboard.
base_path is the full mount prefix the host's router declares with
dashboard_routes/2 — e.g. "/dashboard" or "/admin/durable". These
helpers append the per-page suffix.
Usage
# Workflow definitions list
<.link navigate={Path.workflows(@base_path)}>Workflows</.link>
# Executions for a specific workflow definition
<.link navigate={Path.workflow_executions(@base_path, name)}>...</.link>
# All executions, filterable
<.link navigate={Path.executions(@base_path)}>Executions</.link>
# Single execution detail (and its tabs)
<.link navigate={Path.execution(@base_path, exec.id)}>...</.link>
<.link patch={Path.execution_tab(@base_path, exec.id, "logs")}>Logs</.link>
Summary
Functions
This function is deprecated. Use execution/2 instead.
This function is deprecated. Use execution_tab/3 instead.