Update default on frontend user cert ttl form

This commit is contained in:
Tuan Dang
2025-04-10 21:57:40 -07:00
parent edf375ca48
commit 5c40347c52
2 changed files with 1 additions and 2 deletions

View File

@@ -361,7 +361,6 @@ export const getKeyAlgorithmFromFingerprintOutput = (output: string): SshCertKey
}
if (keyTypeRaw === "ED25519") {
// TODO: test
return SshCertKeyAlgorithm.ED25519;
}

View File

@@ -42,7 +42,7 @@ const schema = z
(val) => ms(val) > 0,
"TTL must be a valid time string such as 2 days, 1d, 2h 1y, ..."
)
.default("8h, 1d, 30m"),
.default("8h"),
loginMappings: z
.object({
loginUser: z.string().trim().min(1),