MT#57349 Expose to customer and subscriber the record_call param

The param has to be exposed to subscribres so they can control which
calls will be recorded. Additionally this is a necessary step to
let the subscriber's profile parameter to view/hide call recording
working

Change-Id: Ifc5a557f8bfe55e4d040f067228e568420c6479d
mr11.4
Marco Capetta 3 years ago
parent a6594c0bc7
commit 9938919588

@ -0,0 +1,10 @@
use provisioning;
set autocommit=0;
# expose to customer
UPDATE voip_preferences SET expose_to_customer = 0 WHERE attribute = 'record_call';
# expose to subscriber
UPDATE voip_preferences SET expose_to_subscriber = 0 WHERE attribute = 'record_call';
COMMIT;

@ -0,0 +1,10 @@
use provisioning;
set autocommit=0;
# expose to customer
UPDATE voip_preferences SET expose_to_customer = 1 WHERE attribute = 'record_call';
# expose to subscriber
UPDATE voip_preferences SET expose_to_subscriber = 1 WHERE attribute = 'record_call';
COMMIT;
Loading…
Cancel
Save