podemos-info/census

View on GitHub
app/queries/orders_batch_last_jobs.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class OrdersBatchLastJobs < Rectify::Query
  def self.for(orders_batch)
    new(orders_batch).query
  end

  def initialize(orders_batch)
    @orders_batch = orders_batch
  end

  def query
    @orders_batch.jobs.order(created_at: :desc).limit(3)
  end
end