Skip to content

Commit

Permalink
Merge pull request #78 from zendesk/kch/add-unqualified-reason-id
Browse files Browse the repository at this point in the history
Version 1.3.9: Add unqualified_reason_id to deals
  • Loading branch information
kcht authored Mar 30, 2021
2 parents 0b09bfd + e31e87f commit 7fab87c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
## CHANGELOG

v1.38 (2019-05-11)
v1.3.9 (2021-03-30)
**Features and Improvements**

* Fixed issue where `unqualified_reason_id` param for deals could not be updated

v1.3.8 (2019-05-11)
**Features and Improvements**

* Update github url references to new Zendesk organisation
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.8
1.3.9
2 changes: 1 addition & 1 deletion lib/basecrm/services/deals_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module BaseCRM
class DealsService
OPTS_KEYS_TO_PERSIST = Set[:contact_id, :currency, :custom_fields, :hot, :loss_reason_id, :name, :owner_id, :source_id, :stage_id, :tags, :value, :last_stage_change_at, :estimated_close_date, :customized_win_likelihood]
OPTS_KEYS_TO_PERSIST = Set[:contact_id, :currency, :custom_fields, :hot, :loss_reason_id, :unqualified_reason_id, :name, :owner_id, :source_id, :stage_id, :tags, :value, :last_stage_change_at, :estimated_close_date, :customized_win_likelihood]

def initialize(client)
@client = client
Expand Down
2 changes: 1 addition & 1 deletion lib/basecrm/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module BaseCRM
VERSION = "1.3.8"
VERSION = "1.3.9"
end

0 comments on commit 7fab87c

Please sign in to comment.