Skip to content

Commit

Permalink
fix: set password limit to 50 to avoid reaching bcrypt limit of 72 by…
Browse files Browse the repository at this point in the history
…tes (#544)
  • Loading branch information
dbarrosop authored Aug 6, 2024
1 parent 20ccc6c commit c98a3be
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 49 deletions.
3 changes: 3 additions & 0 deletions go/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,7 @@ components:
description: A password of minimum 3 characters
example: Str0ngPassw#ord-94|%
minLength: 3
maxLength: 50
type: string
connection:
deprecated: true
Expand Down Expand Up @@ -667,6 +668,7 @@ components:
description: A password of minimum 3 characters
example: Str0ngPassw#ord-94|%
minLength: 3
maxLength: 50
type: string
required:
- email
Expand Down Expand Up @@ -699,6 +701,7 @@ components:
description: A password of minimum 3 characters
example: Str0ngPassw#ord-94|%
minLength: 3
maxLength: 50
type: string
options:
$ref: "#/components/schemas/SignUpOptions"
Expand Down
98 changes: 49 additions & 49 deletions go/api/server.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c98a3be

Please sign in to comment.