(&self, repo_id: RepoId)
| 488 | } |
| 489 | |
| 490 | fn check_can_update(&self, repo_id: RepoId) -> Result<()> { |
| 491 | if !self.client.viewer.can_update(repo_id) { |
| 492 | return Err(Error::NotFound(format!("not found: {repo_id}"))); |
| 493 | } |
| 494 | Ok(()) |
| 495 | } |
| 496 | |
| 497 | fn commit_message(&self) -> String { |
| 498 | "Add change".to_owned() |
no test coverage detected