File: form_helpers.rb

package info (click to toggle)
ruby-invisible-captcha 2.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 384 kB
  • sloc: ruby: 717; makefile: 6
file content (9 lines) | stat: -rw-r--r-- 221 bytes parent folder | download
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module InvisibleCaptcha
  module FormHelpers
    def invisible_captcha(honeypot = nil, options = {})
      @template.invisible_captcha(honeypot, self.object_name, options)
    end
  end
end