summaryrefslogtreecommitdiffstats
path: root/modules/auth/repo_form.go
diff options
context:
space:
mode:
authorBwko <bouwko@gmail.com>2017-01-25 08:23:20 +0100
committerLunny Xiao <xiaolunwen@gmail.com>2017-01-25 15:23:20 +0800
commit634ac9c5afd3f8aa8a5c72a2698f33e10e8e6b5d (patch)
treeb359bbf7988ccc230af7e256bbd4aac2bffa96bd /modules/auth/repo_form.go
parent8555e888d8690df718b1673b8409a29d05770cf4 (diff)
downloadgitea-634ac9c5afd3f8aa8a5c72a2698f33e10e8e6b5d.tar.gz
gitea-634ac9c5afd3f8aa8a5c72a2698f33e10e8e6b5d.zip
Update Website binding MaxSize to 255 (#722)
Diffstat (limited to 'modules/auth/repo_form.go')
-rw-r--r--modules/auth/repo_form.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go
index dda1f9d252..82018ea0ff 100644
--- a/modules/auth/repo_form.go
+++ b/modules/auth/repo_form.go
@@ -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