The project code used in human keys (falls back to `VAULT`).
(&self)
| 359 | |
| 360 | /// The project code used in human keys (falls back to `VAULT`). |
| 361 | pub fn project_code(&self) -> &str { |
| 362 | if self.intent_prefix.is_empty() { |
| 363 | "VAULT" |
| 364 | } else { |
| 365 | &self.intent_prefix |
| 366 | } |
| 367 | } |
| 368 | |
| 369 | /// Allocate the next per-author sequence number, advancing that author's |
| 370 | /// counter. Each author has an independent counter so offline teammates |
no test coverage detected