Normalize management token prefixes

This commit is contained in:
fawney19
2026-04-28 19:46:38 +08:00
parent 3d20c05ef7
commit 230e7d6259
7 changed files with 56 additions and 25 deletions

View File

@@ -132,7 +132,7 @@ impl StoredManagementToken {
self.token_prefix
.as_deref()
.map(|prefix| format!("{prefix}...****"))
.unwrap_or_else(|| "ae_****".to_string())
.unwrap_or_else(|| "ae-****".to_string())
}
}