Sha256: 31953cf56957d943230414888f825d61a06b0a2afec5992dfb9644593a2e06a7
Contents?: true
Size: 236 Bytes
Versions: 19
Compression:
Stored size: 236 Bytes
Contents
# frozen_string_literal: true module GoodJob class ProcessesController < GoodJob::ApplicationController def index @processes = GoodJob::Process.active.order(created_at: :desc) if GoodJob::Process.migrated? end end end
Version data entries
19 entries across 19 versions & 1 rubygems