The tracked-vault path for an intent's attestation: `attestations/ /attested.md`.
(repo: &Repository, id: &str)
| 129 | /// The tracked-vault path for an intent's attestation: |
| 130 | /// `attestations/<sanitized-normalized-id>/attested.md`. |
| 131 | pub fn attestation_vault_path(repo: &Repository, id: &str) -> CliResult<String> { |
| 132 | Ok(format!( |
| 133 | "attestations/{}/attested.md", |
| 134 | sanitize_id(&normalized_id(repo, id)?) |
| 135 | )) |
| 136 | } |
| 137 | |
| 138 | /// The directory that holds an intent's canonical sidecar artifacts: |
| 139 | /// `<dot_dir>/canonical/intents/<sanitized-normalized-id>/`. Keyed off the SAME |
no outgoing calls