(blockId: string, blocks: Record<string, BlockState>)
| 196 | * @returns True if the block is protected |
| 197 | */ |
| 198 | export function isBlockProtected(blockId: string, blocks: Record<string, BlockState>): boolean { |
| 199 | return isWorkflowBlockProtected(blockId, blocks) |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * Builds a complete collection of loops from the UI blocks |
no test coverage detected