2018-03-23 17:25:58 +01:00
|
|
|
class PipedriveAcceptsDealsJob < ApplicationJob
|
|
|
|
def perform(person_id, owner_id, stage_id)
|
2018-03-28 15:19:34 +02:00
|
|
|
PipedriveService.accept_demande_from_person(person_id, owner_id, stage_id)
|
2018-03-23 17:25:58 +01:00
|
|
|
end
|
|
|
|
end
|