(id: string, action?: string)
| 47 | } |
| 48 | |
| 49 | function managedSkillPath(id: string, action?: string): string { |
| 50 | const path = `${AUTOMATION_BASE}/skills/${encodeURIComponent(id)}`; |
| 51 | return action ? `${path}/${action}` : path; |
| 52 | } |
| 53 | |
| 54 | function factProposalPath(id: string, action?: string): string { |
| 55 | const path = `${AUTOMATION_BASE}/fact-proposals/${encodeURIComponent(id)}`; |
no outgoing calls
no test coverage detected