(files)
| 40 | } |
| 41 | |
| 42 | attachFiles(files) { |
| 43 | const operations = Array.from(files).map((file) => new FileVerificationOperation(file)) |
| 44 | return Promise.all(operations).then((files) => { |
| 45 | this.handleInput(function() { |
| 46 | this.delegate?.inputControllerWillAttachFiles() |
| 47 | this.responder?.insertFiles(files) |
| 48 | return this.requestRender() |
| 49 | }) |
| 50 | }) |
| 51 | } |
| 52 | |
| 53 | // Private |
| 54 |
no test coverage detected