Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.

Commit c62f39d

Browse files
committed
Fix max length for Name
1 parent e259e18 commit c62f39d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iam/clients_service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type ApplicationClient struct {
1818
ID string `json:"id,omitempty"`
1919
ClientID string `json:"clientId" validate:"required,min=5,max=20"`
2020
Type string `json:"type"`
21-
Name string `json:"name" validate:"required,min=5,max=20"`
21+
Name string `json:"name" validate:"required,min=5,max=50"`
2222
Password string `json:"password,omitempty" validate:"required,min=8,max=16"`
2323
RedirectionURIs []string `json:"redirectionURIs"`
2424
ResponseTypes []string `json:"responseTypes"`

0 commit comments

Comments
 (0)