(&self, repo_id: RepoId, topic_id: &ExternalId, block: F)
| 88 | } |
| 89 | |
| 90 | pub fn fetch_topic<F>(&self, repo_id: RepoId, topic_id: &ExternalId, block: F) |
| 91 | where |
| 92 | F: Fn(RepoTopic), |
| 93 | { |
| 94 | let topic = self |
| 95 | .git |
| 96 | .fetch_topic(repo_id, topic_id) |
| 97 | .unwrap_or_else(|| panic!("expected a topic: {topic_id:?}")); |
| 98 | |
| 99 | block(topic); |
| 100 | } |
| 101 | |
| 102 | pub fn leaked_data(&self) -> Result<Vec<(RepoId, String)>> { |
| 103 | self.git.leaked_data() |
no outgoing calls
no test coverage detected