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)
| 378 | /// read-only consumers do not need to assume `IntentSummary.vault_path` is |
| 379 | /// populated. |
| 380 | pub fn vault_intent_path(&self, intent_id: &str) -> Result<Option<String>, RepositoryError> { |
| 381 | let full_id = self.normalize_intent_id(intent_id)?; |
| 382 | self.find_intent_path(&full_id) |
| 383 | } |
| 384 | |
| 385 | /// Delete an unstarted backlog intent. |
| 386 | /// |
no test coverage detected