Update Website binding MaxSize to 255 (#722)
This commit is contained in:
		
							parent
							
								
									8555e888d8
								
							
						
					
					
						commit
						634ac9c5af
					
				
					 4 changed files with 6 additions and 6 deletions
				
			
		|  | @ -32,7 +32,7 @@ type AdminEditUserForm struct { | |||
| 	FullName                string `binding:"MaxSize(100)"` | ||||
| 	Email                   string `binding:"Required;Email;MaxSize(254)"` | ||||
| 	Password                string `binding:"MaxSize(255)"` | ||||
| 	Website                 string `binding:"MaxSize(50)"` | ||||
| 	Website                 string `binding:"Url;MaxSize(255)"` | ||||
| 	Location                string `binding:"MaxSize(50)"` | ||||
| 	MaxRepoCreation         int | ||||
| 	Active                  bool | ||||
|  |  | |||
|  | @ -31,7 +31,7 @@ type UpdateOrgSettingForm struct { | |||
| 	Name            string `binding:"Required;AlphaDashDot;MaxSize(35)" locale:"org.org_name_holder"` | ||||
| 	FullName        string `binding:"MaxSize(100)"` | ||||
| 	Description     string `binding:"MaxSize(255)"` | ||||
| 	Website         string `binding:"Url;MaxSize(100)"` | ||||
| 	Website         string `binding:"Url;MaxSize(255)"` | ||||
| 	Location        string `binding:"MaxSize(50)"` | ||||
| 	MaxRepoCreation int | ||||
| } | ||||
|  |  | |||
|  | @ -87,7 +87,7 @@ func (f MigrateRepoForm) ParseRemoteAddr(user *models.User) (string, error) { | |||
| type RepoSettingForm struct { | ||||
| 	RepoName      string `binding:"Required;AlphaDashDot;MaxSize(100)"` | ||||
| 	Description   string `binding:"MaxSize(255)"` | ||||
| 	Website       string `binding:"Url;MaxSize(100)"` | ||||
| 	Website       string `binding:"Url;MaxSize(255)"` | ||||
| 	Branch        string | ||||
| 	Interval      int | ||||
| 	MirrorAddress string | ||||
|  | @ -267,7 +267,7 @@ type NewReleaseForm struct { | |||
| 	Content    string | ||||
| 	Draft      string | ||||
| 	Prerelease bool | ||||
| 	Files   []string | ||||
| 	Files      []string | ||||
| } | ||||
| 
 | ||||
| // Validate valideates the fields
 | ||||
|  | @ -281,7 +281,7 @@ type EditReleaseForm struct { | |||
| 	Content    string `form:"content"` | ||||
| 	Draft      string `form:"draft"` | ||||
| 	Prerelease bool   `form:"prerelease"` | ||||
| 	Files   []string | ||||
| 	Files      []string | ||||
| } | ||||
| 
 | ||||
| // Validate valideates the fields
 | ||||
|  |  | |||
|  | @ -103,7 +103,7 @@ type UpdateProfileForm struct { | |||
| 	FullName         string `binding:"MaxSize(100)"` | ||||
| 	Email            string `binding:"Required;Email;MaxSize(254)"` | ||||
| 	KeepEmailPrivate bool | ||||
| 	Website          string `binding:"Url;MaxSize(100)"` | ||||
| 	Website          string `binding:"Url;MaxSize(255)"` | ||||
| 	Location         string `binding:"MaxSize(50)"` | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue