parent
							
								
									5acba4609a
								
							
						
					
					
						commit
						fa1c958f1c
					
				
					 2 changed files with 14 additions and 14 deletions
				
			
		|  | @ -85,7 +85,7 @@ type RegisterForm struct { | ||||||
| 	GRecaptchaResponse string `form:"g-recaptcha-response"` | 	GRecaptchaResponse string `form:"g-recaptcha-response"` | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *RegisterForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *RegisterForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  | @ -122,7 +122,7 @@ type MustChangePasswordForm struct { | ||||||
| 	Retype   string | 	Retype   string | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *MustChangePasswordForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *MustChangePasswordForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  | @ -135,7 +135,7 @@ type SignInForm struct { | ||||||
| 	Remember bool | 	Remember bool | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *SignInForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *SignInForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  | @ -152,7 +152,7 @@ type AuthorizationForm struct { | ||||||
| 	CodeChallenge       string | 	CodeChallenge       string | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *AuthorizationForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *AuthorizationForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  | @ -164,7 +164,7 @@ type GrantApplicationForm struct { | ||||||
| 	State       string | 	State       string | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *GrantApplicationForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *GrantApplicationForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  | @ -182,7 +182,7 @@ type AccessTokenForm struct { | ||||||
| 	CodeVerifier string `json:"code_verifier"` | 	CodeVerifier string `json:"code_verifier"` | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *AccessTokenForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *AccessTokenForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  | @ -304,7 +304,7 @@ type NewAccessTokenForm struct { | ||||||
| 	Name string `binding:"Required;MaxSize(255)"` | 	Name string `binding:"Required;MaxSize(255)"` | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *NewAccessTokenForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *NewAccessTokenForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  | @ -315,7 +315,7 @@ type EditOAuth2ApplicationForm struct { | ||||||
| 	RedirectURI string `binding:"Required" form:"redirect_uri"` | 	RedirectURI string `binding:"Required" form:"redirect_uri"` | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *EditOAuth2ApplicationForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *EditOAuth2ApplicationForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  | @ -335,7 +335,7 @@ type TwoFactorScratchAuthForm struct { | ||||||
| 	Token string `binding:"Required"` | 	Token string `binding:"Required"` | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *TwoFactorScratchAuthForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *TwoFactorScratchAuthForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  | @ -345,7 +345,7 @@ type U2FRegistrationForm struct { | ||||||
| 	Name string `binding:"Required"` | 	Name string `binding:"Required"` | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *U2FRegistrationForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *U2FRegistrationForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  | @ -355,7 +355,7 @@ type U2FDeleteForm struct { | ||||||
| 	ID int64 `binding:"Required"` | 	ID int64 `binding:"Required"` | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *U2FDeleteForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *U2FDeleteForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -15,7 +15,7 @@ type SignInOpenIDForm struct { | ||||||
| 	Remember bool | 	Remember bool | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *SignInOpenIDForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *SignInOpenIDForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  | @ -27,7 +27,7 @@ type SignUpOpenIDForm struct { | ||||||
| 	GRecaptchaResponse string `form:"g-recaptcha-response"` | 	GRecaptchaResponse string `form:"g-recaptcha-response"` | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *SignUpOpenIDForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *SignUpOpenIDForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  | @ -38,7 +38,7 @@ type ConnectOpenIDForm struct { | ||||||
| 	Password string `binding:"Required;MaxSize(255)"` | 	Password string `binding:"Required;MaxSize(255)"` | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Validate valideates the fields
 | // Validate validates the fields
 | ||||||
| func (f *ConnectOpenIDForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | func (f *ConnectOpenIDForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||||
| 	return validate(errs, ctx.Data, f, ctx.Locale) | 	return validate(errs, ctx.Data, f, ctx.Locale) | ||||||
| } | } | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue