5 lines
182 B
Ruby
5 lines
182 B
Ruby
class PipedriveAcceptsDealsJob < ApplicationJob
|
|
def perform(person_id, owner_id, stage_id)
|
|
PipedriveService.accept_demande_from_person(person_id, owner_id, stage_id)
|
|
end
|
|
end
|