18F/micropurchase

View on GitHub
app/presenters/sam_status_presenter/pending.rb

Summary

Maintainability
A
0 mins
Test Coverage
class SamStatusPresenter::Pending < SamStatusPresenter::Base
  def flash_type
    :warning
  end

  def status_class
    'pending'
  end

  def admin_status_text
    'Pending'
  end

  def status_text
    'Verifying'
  end

  def message
    "Your profile is pending while your DUNS number is being validated. This
    typically takes less than one hour"
  end
end