The tracked-vault path for an intent's attestation: `attestations/ /attested.md`.
(repo: &Repository, id: &str)
| 148 | /// The tracked-vault path for an intent's attestation: |
| 149 | /// `attestations/<sanitized-normalized-id>/attested.md`. |
| 150 | pub fn attestation_vault_path(repo: &Repository, id: &str) -> CliResult<String> { |
| 151 | Ok(format!( |
| 152 | "attestations/{}/attested.md", |
| 153 | sanitize_id(&normalized_id(repo, id)?) |
| 154 | )) |
| 155 | } |
| 156 | |
| 157 | /// The directory that holds an intent's canonical sidecar artifacts: |
| 158 | /// `<dot_dir>/canonical/intents/<sanitized-normalized-id>/`. Keyed off the SAME |
no outgoing calls