(extraApprovedPaths: string[] = [])
| 31 | } |
| 32 | |
| 33 | function getApprovedWorkspacePaths(extraApprovedPaths: string[] = []): string[] { |
| 34 | return Array.from( |
| 35 | new Set([...stores.workspace.workspaces.map((workspace) => workspace.path), ...extraApprovedPaths]) |
| 36 | ) |
| 37 | } |
| 38 | |
| 39 | async function commitWorkspaceContext( |
| 40 | accountId: string, |
no outgoing calls
no test coverage detected