scope :posted_between, ->(start_date, end_date = nil) {
    start_date, end_date = range_boundary(start_date) if start_date.is_a?(Range)
    where posted_at: Date.coerce(start_date)..Date.coerce(end_date)
  }