* Gets the path to an uploaded file * * @param taskId - The task identifier * @returns The full path to the uploaded file
(taskId: string)
| 202 | * @returns The full path to the uploaded file |
| 203 | */ |
| 204 | getUploadedFilePath(taskId: string): string { |
| 205 | return path.join(this.uploadsPath, `${taskId}.glb`); |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * Gets the path to a result file |
no outgoing calls
no test coverage detected