discourse/plugins/chat/app/jobs/service_job.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
191 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ServiceJob < ::Jobs::Base
include Chat::WithServiceHelper
def run_service(service, dependencies)
@_result = service.call(dependencies)
end
end