Sha256: 2c62e1dff92907731218d4b6128e50f3386d0a2b68a17ca0c39f466d20e23424

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 KB

Contents

module DeviseOtpAuthenticatable
  module Controllers
    module UrlHelpers
      def recovery_otp_token_for(resource_or_scope, opts = {})
        scope = ::Devise::Mapping.find_scope!(resource_or_scope)
        send("recovery_#{scope}_otp_token_path", opts)
      end

      def refresh_otp_credential_path_for(resource_or_scope, opts = {})
        scope = ::Devise::Mapping.find_scope!(resource_or_scope)
        send("refresh_#{scope}_otp_credential_path", opts)
      end

      def persistence_otp_token_path_for(resource_or_scope, opts = {})
        scope = ::Devise::Mapping.find_scope!(resource_or_scope)
        send("persistence_#{scope}_otp_token_path", opts)
      end

      def otp_token_path_for(resource_or_scope, opts = {})
        scope = ::Devise::Mapping.find_scope!(resource_or_scope)
        send("#{scope}_otp_token_path", opts)
      end

      def otp_credential_path_for(resource_or_scope, opts = {})
        scope = ::Devise::Mapping.find_scope!(resource_or_scope)
        send("#{scope}_otp_credential_path", opts)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
devise-otp-0.6.0 lib/devise_otp_authenticatable/controllers/url_helpers.rb
devise-otp-0.5.0 lib/devise_otp_authenticatable/controllers/url_helpers.rb