module SignHost::Status

Constants

CONTRACT_STATUSES
SIGNER_STATUSES

Public Class Methods

lookup_contract_status(status) click to toggle source
# File lib/sign_host/status.rb, line 33
def self.lookup_contract_status(status)
  return "" unless  status
  CONTRACT_STATUSES.fetch(status.to_s)
end
lookup_signer_status(status) click to toggle source
# File lib/sign_host/status.rb, line 38
def self.lookup_signer_status(status)
  return "" unless  status
  SIGNER_STATUSES.fetch(status.to_s)
end