1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-04 19:44:47 +00:00

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"`
}