Skip to content

Commit

Permalink
[bugfix] Increase field size limits when registering apps (#958)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmethurst committed Nov 5, 2022
1 parent ee6a0a1 commit a9addb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/api/client/app/appcreate.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import (

// these consts are used to ensure users can't spam huge entries into our database
const (
formFieldLen = 64
formRedirectLen = 512
formFieldLen = 1024
formRedirectLen = 2056
)

// AppsPOSTHandler swagger:operation POST /api/v1/apps appCreate
Expand Down

0 comments on commit a9addb5

Please sign in to comment.