(file: UserFile)
| 52 | * Execution files have keys in format: execution/workspaceId/workflowId/executionId/filename |
| 53 | */ |
| 54 | export function isExecutionFile(file: UserFile): boolean { |
| 55 | if (!file.key) { |
| 56 | return false |
| 57 | } |
| 58 | |
| 59 | return matchesExecutionFilePattern(file.key) |
| 60 | } |
no test coverage detected