The project code used in human keys (falls back to `VAULT`).
(&self)
| 336 | |
| 337 | /// The project code used in human keys (falls back to `VAULT`). |
| 338 | pub fn project_code(&self) -> &str { |
| 339 | if self.intent_prefix.is_empty() { |
| 340 | "VAULT" |
| 341 | } else { |
| 342 | &self.intent_prefix |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | /// Allocate the next per-author sequence number, advancing that author's |
| 347 | /// counter. Each author has an independent counter so offline teammates |
no test coverage detected