* Get the path to a pending request file
(teamName: string, requestId: string)
| 144 | * Get the path to a pending request file |
| 145 | */ |
| 146 | function getPendingRequestPath(teamName: string, requestId: string): string { |
| 147 | return join(getPendingDir(teamName), `${requestId}.json`) |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Get the path to a resolved request file |
no test coverage detected