(&self, topic_id: ExternalId)
| 185 | } |
| 186 | |
| 187 | pub async fn fetch_topic(&self, topic_id: ExternalId) -> Result<Option<git::Topic>> { |
| 188 | let key = Okey(topic_id, self.viewer.context_repo_id); |
| 189 | self.fetch_topic_by_key(key).await |
| 190 | } |
| 191 | |
| 192 | pub async fn fetch_topic_by_key(&self, key: Okey) -> Result<Option<git::Topic>> { |
| 193 | match self.object_loader.load_one(key).await? { |
nothing calls this directly
no test coverage detected