mirror of https://github.com/sipwise/db-schema.git
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: Ifc5a557f8bfe55e4d040f067228e568420c6479dmr11.4
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…
Reference in new issue