( serverUrl: string, namespace: string, workflowId: string )
| 60 | * URL-encoding the workflow ID. |
| 61 | */ |
| 62 | export function temporalWorkflowUrl( |
| 63 | serverUrl: string, |
| 64 | namespace: string, |
| 65 | workflowId: string |
| 66 | ): string { |
| 67 | return `${temporalNamespaceUrl(serverUrl, namespace)}/workflows/${encodeURIComponent(workflowId.trim())}` |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Builds the `/schedules/{scheduleId}` URL for a schedule, trimming and URL-encoding |
no test coverage detected