(workspaceRef string)
| 5711 | } |
| 5712 | |
| 5713 | func networkBasePath(workspaceRef string) (string, error) { |
| 5714 | workspaceRef, err := requireNetworkPathValue("workspace_id", workspaceRef) |
| 5715 | if err != nil { |
| 5716 | return "", err |
| 5717 | } |
| 5718 | return "/api/workspaces/" + url.PathEscape(workspaceRef) + "/network", nil |
| 5719 | } |
| 5720 | |
| 5721 | func hooksBasePath(workspaceRef string) (string, error) { |
| 5722 | workspaceRef, err := requireNetworkPathValue("workspace_id", workspaceRef) |
no test coverage detected