# frozen_string_literal: true
module GoodJob
  class ActiveJobsController < GoodJob::BaseController
    def show
      @executions = GoodJob::Execution.active_job_id(params[:id])
                                      .order(Arel.sql("COALESCE(scheduled_at, created_at) DESC"))
      raise ActiveRecord::RecordNotFound if @executions.empty?
    end
  end
end