(
&self,
topic_ids: Vec<ExternalId>,
take: usize,
)
| 197 | } |
| 198 | |
| 199 | pub async fn fetch_topics( |
| 200 | &self, |
| 201 | topic_ids: Vec<ExternalId>, |
| 202 | take: usize, |
| 203 | ) -> Result<BTreeSet<git::Topic>> { |
| 204 | self.fetch_topics_with_context(topic_ids, take, self.viewer.context_repo_id) |
| 205 | .await |
| 206 | } |
| 207 | |
| 208 | pub async fn fetch_topics_with_context( |
| 209 | &self, |
no test coverage detected