Method: GitlabRecaptcha#check_recaptcha

Defined in:
app/controllers/concerns/gitlab_recaptcha.rb

#check_recaptchaObject



12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'app/controllers/concerns/gitlab_recaptcha.rb', line 12

def check_recaptcha
  return unless load_recaptcha
  return if verify_recaptcha

  flash[:alert] = _('There was an error with the reCAPTCHA. Please solve the reCAPTCHA again.')
  flash.delete :recaptcha_error

  self.resource = resource_class.new

  add_gon_variables

  render action: 'new'
end