diff options
author | Ted Trask <ttrask01@yahoo.com> | 2017-01-02 22:17:18 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2017-02-22 22:44:54 +0000 |
commit | 8a5e6ab7b1945650832b5667e76a4a3d00be7e65 (patch) | |
tree | de8c5962a51afcad17286fa7c05edd6cebe40c8c /config/templates/polycom-template.lua | |
parent | 5cb9f985768afd8267aaafe7384e6df33da01a06 (diff) | |
download | acf-provisioning-8a5e6ab7b1945650832b5667e76a4a3d00be7e65.tar.bz2 acf-provisioning-8a5e6ab7b1945650832b5667e76a4a3d00be7e65.tar.xz |
Add missedcallhistoryenable and receivedcallhistoryenable params
callhistoryenable is now for placed calls only
makes these parameters consistent between snom and polycom
(cherry picked from commit d749574edabd2f8782a84bc46d953208085fa62f)
Diffstat (limited to 'config/templates/polycom-template.lua')
-rw-r--r-- | config/templates/polycom-template.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/templates/polycom-template.lua b/config/templates/polycom-template.lua index e3a4313..a6f3b2a 100644 --- a/config/templates/polycom-template.lua +++ b/config/templates/polycom-template.lua @@ -40,6 +40,8 @@ -- Assuming that services will not be nil services = { callhistoryenable = boolean + missedcallhistoryenable = boolean + receivedcallhistoryenable = boolean callwaitingenable = boolean forwarding = boolean hotlinedestination = string @@ -197,6 +199,12 @@ if values.services then if not values.services.callhistoryenable then xml_attr({ 'feature.callListPlaced.enabled' }, '0') end + if not values.services.missedcallhistoryenable then + xml_attr({ 'feature.callListMissed.enabled' }, '0') + end + if not values.services.receivedcallhistoryenable then + xml_attr({ 'feature.callListReceived.enabled' }, '0') + end if not values.services.callwaitingenable then -- only allow one call per line key xml_attr({ 'call.callsPerLineKey' }, '1' ) |