Sha256: d22f87e00803ce201d1348139fca29f1fc0e4321dd3dd27c1faa48131d3317fd
Contents?: true
Size: 254 Bytes
Versions: 32
Compression:
Stored size: 254 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
32 entries across 32 versions & 1 rubygems