(pr: PRDetail)
| 126 | }; |
| 127 | |
| 128 | const handleIndexPR = async (pr: PRDetail) => { |
| 129 | await indexPRIntoGraph(store, pr, prClient.meta); |
| 130 | await store.flush(); |
| 131 | const prId = `${prClient.meta.owner}/${prClient.meta.repo}/pr/${pr.number}`; |
| 132 | await onGraphChange?.(prId); |
| 133 | }; |
| 134 | |
| 135 | const handleSelectInGraph = (pr: PRDetail) => { |
| 136 | const prId = `${prClient.meta.owner}/${prClient.meta.repo}/pr/${pr.number}`; |
nothing calls this directly
no test coverage detected