fix: allow passkey names up to 50 characters

This commit is contained in:
Kyle Mendell
2025-07-11 22:10:59 -05:00
parent 505bdcb8ba
commit b03e91b653

View File

@@ -19,5 +19,5 @@ type WebauthnCredentialDto struct {
}
type WebauthnCredentialUpdateDto struct {
Name string `json:"name" binding:"required,min=1,max=30"`
Name string `json:"name" binding:"required,min=1,max=50"`
}