(ctx *macaron.Context, errs binding.Errors)
| 10 | } |
| 11 | |
| 12 | func (f *CreateOrg) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { |
| 13 | return validate(errs, ctx.Data, f, ctx.Locale) |
| 14 | } |
| 15 | |
| 16 | type UpdateOrgSetting struct { |
| 17 | Name string `binding:"Required;AlphaDashDot;MaxSize(35)" locale:"org.org_name_holder"` |
nothing calls this directly
no test coverage detected