18F/identity-idp

View on GitHub
app/presenters/two_factor_auth_code/personal_key_presenter.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module TwoFactorAuthCode
  class PersonalKeyPresenter < TwoFactorAuthCode::GenericDeliveryPresenter
    def initialize; end

    def redirect_location_step
      :personal_key_verification
    end
  end
end