(
&self,
ids: Vec<ExternalId>,
take: usize,
)
| 156 | } |
| 157 | |
| 158 | pub async fn fetch_objects( |
| 159 | &self, |
| 160 | ids: Vec<ExternalId>, |
| 161 | take: usize, |
| 162 | ) -> Result<Vec<git::Object>> { |
| 163 | let context_id = self.viewer.context_repo_id; |
| 164 | self.fetch_objects_with_context(ids, take, context_id).await |
| 165 | } |
| 166 | |
| 167 | pub async fn fetch_objects_with_context( |
| 168 | &self, |
no test coverage detected