Method: Effective::NotificationLog#days_ago

Defined in:
app/models/effective/notification_log.rb

#days_ago(date: nil) ⇒ Object



29
30
31
32
# File 'app/models/effective/notification_log.rb', line 29

def days_ago(date: nil)
  now = (date || Time.zone.now).to_date
  (now - (created_at&.to_date || now)).to_i
end