module Attio::Concerns::TimeFilterable

def old?(days = 365)

Returns:
  • (Boolean) - True if created more than specified days ago

Parameters:
  • days (Integer) -- Number of days to consider "old"
def old?(days = 365)
  age = age_in_days
  age && age > days
end