Pipedrive: manager can refuse a deal

This commit is contained in:
simon lehericey 2018-03-27 13:32:14 +02:00
parent 8d7c639f8f
commit d0431a28f2
5 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,5 @@
class PipedriveRefusesDealsJob < ApplicationJob
def perform(person_id, owner_id)
PipedriveService.refuse_deals_from_person(person_id, owner_id)
end
end