|
|
|
@@ -17,7 +17,7 @@ import ( |
|
|
|
// \/ /_____/ \/ \/ \/ \/ \/ |
|
|
|
|
|
|
|
type CreateOrgForm struct { |
|
|
|
OrgName string `binding:"Required;AlphaDashDot;MaxSize(30)" locale:"org.org_name_holder"` |
|
|
|
OrgName string `binding:"Required;AlphaDashDot;MaxSize(35)" locale:"org.org_name_holder"` |
|
|
|
} |
|
|
|
|
|
|
|
func (f *CreateOrgForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { |
|
|
|
@@ -25,7 +25,7 @@ func (f *CreateOrgForm) Validate(ctx *macaron.Context, errs binding.Errors) bind |
|
|
|
} |
|
|
|
|
|
|
|
type UpdateOrgSettingForm struct { |
|
|
|
Name string `binding:"Required;AlphaDashDot;MaxSize(30)" locale:"org.org_name_holder"` |
|
|
|
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)"` |
|
|
|
|