Sha256: 40e532dc44d88435faf1e0a70e4ff3ca5e50de02ccbfdfdc858f5de432feb40e

Contents?: true

Size: 1.72 KB

Versions: 1

Compression:

Stored size: 1.72 KB

Contents

module DeviseAuthy
  module Views
    module Helpers
      def authy_request_phone_call_link(opts = {})
        title = opts.delete(:title) do
          I18n.t('request_phone_call', scope: 'devise')
        end
        opts = {
          :id => "authy-request-phone-call-link",
          :method => :post,
          :remote => true
        }.merge(opts)

        link_to(
          title,
          url_for([resource_name.to_sym, :request_phone_call]),
          opts
        )
      end

      def authy_request_sms_link(opts = {})
        title = opts.delete(:title) do
          I18n.t('request_sms', scope: 'devise')
        end
        opts = {
          :id => "authy-request-sms-link",
          :method => :post,
          :remote => true
        }.merge(opts)

        link_to(
          title,
          url_for([resource_name.to_sym, :request_sms]),
          opts
        )
      end

      def verify_authy_form(opts = {}, &block)
        opts = default_opts.merge(:id => 'devise_authy').merge(opts)
        form_tag([resource_name.to_sym, :verify_authy], opts) do
          buffer = hidden_field_tag(:"#{resource_name}_id", @resource.id)
          buffer << capture(&block)
        end
      end

      def enable_authy_form(opts = {}, &block)
        opts = default_opts.merge(opts)
        form_tag([resource_name.to_sym, :enable_authy], opts) do
          capture(&block)
        end
      end

      def verify_authy_installation_form(opts = {}, &block)
        opts = default_opts.merge(opts)
        form_tag([resource_name.to_sym, :verify_authy_installation], opts) do
          capture(&block)
        end
      end

      private

      def default_opts
        { :class => 'authy-form', :method => :post }
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
devise-authy-2.3.1 lib/devise-authy/controllers/view_helpers.rb