module DeviseAuthy::Views::Helpers
Public Instance Methods
authy_request_phone_call_link(opts = {})
click to toggle source
# File lib/devise-authy/controllers/view_helpers.rb, line 4 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
authy_request_sms_link(opts = {})
click to toggle source
# File lib/devise-authy/controllers/view_helpers.rb, line 21 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
enable_authy_form(opts = {}, &block)
click to toggle source
# File lib/devise-authy/controllers/view_helpers.rb, line 46 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
verify_authy_form(opts = {}, &block)
click to toggle source
# File lib/devise-authy/controllers/view_helpers.rb, line 38 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
verify_authy_installation_form(opts = {}, &block)
click to toggle source
# File lib/devise-authy/controllers/view_helpers.rb, line 53 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 Instance Methods
default_opts()
click to toggle source
# File lib/devise-authy/controllers/view_helpers.rb, line 62 def default_opts { :class => 'authy-form', :method => :post } end