Resolve a user-supplied intent reference to its manifest key (human key). Public entry point so callers outside the repository (e.g. the CLI attestation bridge) share a single resolution implementation.
(&self, id: &str)
| 829 | /// key). Public entry point so callers outside the repository (e.g. the |
| 830 | /// CLI attestation bridge) share a single resolution implementation. |
| 831 | pub fn resolve_intent_key(&self, id: &str) -> Result<String, RepositoryError> { |
| 832 | self.normalize_intent_id(id) |
| 833 | } |
| 834 | |
| 835 | /// Normalize a user-supplied intent reference to its manifest key (the |
| 836 | /// human key `PROJECT::author::seq`). |
no test coverage detected