(
&self,
repo_id: RepoId,
id: &ExternalId,
index_mode: IndexMode,
)
| 472 | |
| 473 | impl Mutation { |
| 474 | pub fn activity_log( |
| 475 | &self, |
| 476 | repo_id: RepoId, |
| 477 | id: &ExternalId, |
| 478 | index_mode: IndexMode, |
| 479 | ) -> Result<ActivityIndex> { |
| 480 | self.client.fetch_activity_log(repo_id, id, index_mode) |
| 481 | } |
| 482 | |
| 483 | pub fn add_change(&mut self, repo_id: RepoId, change: &activity::Change) -> Result<()> { |
| 484 | self.indexer.add_change(repo_id, &self.client, change)?; |
nothing calls this directly
no test coverage detected