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)
| 505 | /// read-only consumers do not need to assume `IntentSummary.vault_path` is |
| 506 | /// populated. |
| 507 | pub fn vault_intent_path(&self, intent_id: &str) -> Result<Option<String>, RepositoryError> { |
| 508 | let full_id = self.normalize_intent_id(intent_id)?; |
| 509 | self.find_intent_path(&full_id) |
| 510 | } |
| 511 | |
| 512 | /// Delete an unstarted backlog intent. |
| 513 | /// |
no test coverage detected