Resolve an Intent display ID to its current Vault path. This exposes the same legacy-manifest fallback used by `intent show` so read-only consumers do not need to assume `IntentSummary.vault_path` is populated.
(&self, intent_id: &str)
| 330 | /// read-only consumers do not need to assume `IntentSummary.vault_path` is |
| 331 | /// populated. |
| 332 | pub fn vault_intent_path(&self, intent_id: &str) -> Result<Option<String>, RepositoryError> { |
| 333 | let full_id = self.normalize_intent_id(intent_id)?; |
| 334 | self.find_intent_path(&full_id) |
| 335 | } |
| 336 | |
| 337 | /// Delete an unstarted backlog intent. |
| 338 | /// |
no test coverage detected