mirror of https://github.com/rails/rails
6 lines
106 B
Ruby
6 lines
106 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class QueueAdapterJob < ActiveJob::Base
|
||
|
self.queue_adapter = :inline
|
||
|
end
|