mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 13:56:50 +08:00
b8762172e4
This patch introduces a new `ServiceJob` class allowing the use of `with_service` in jobs. This way, it’s easier to use the chat service objects in jobs and provides the same level of functionality than the one we have in controllers.
10 lines
191 B
Ruby
10 lines
191 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ServiceJob < ::Jobs::Base
|
|
include Chat::WithServiceHelper
|
|
|
|
def run_service(service, dependencies)
|
|
@_result = service.call(dependencies)
|
|
end
|
|
end
|