Sha256: cd1a09fb72c7bcd0388681c1c73bc4a0f0258e9eec3bf7988aa0b99dcfaf13bc
Contents?: true
Size: 255 Bytes
Versions: 54
Compression:
Stored size: 255 Bytes
Contents
# frozen_string_literal: true module GoodJob class BatchesController < GoodJob::ApplicationController def index @filter = BatchesFilter.new(params) end def show @batch = GoodJob::BatchRecord.find(params[:id]) end end end
Version data entries
54 entries across 54 versions & 1 rubygems