MT#57577 expose to customer and subscriber ncos_id and ncos_set_id prefs

This is necessary to let them configure the options by themself.

Change-Id: I89e559ca2b6a55bdf91011d7e9d0eda8a8c38b27
mr11.5
Marco Capetta 3 years ago
parent ecfeacea79
commit 9e1ef76fd2

@ -0,0 +1,7 @@
use provisioning;
set autocommit=0;
UPDATE voip_preferences SET expose_to_customer = 0 WHERE attribute in ('ncos_id', 'ncos_set_id');
UPDATE voip_preferences SET expose_to_subscriber = 0 WHERE attribute in ('ncos_id', 'ncos_set_id');
COMMIT;

@ -0,0 +1,7 @@
use provisioning;
set autocommit=0;
UPDATE voip_preferences SET expose_to_customer = 1 WHERE attribute in ('ncos_id', 'ncos_set_id');
UPDATE voip_preferences SET expose_to_subscriber = 1 WHERE attribute in ('ncos_id', 'ncos_set_id');
COMMIT;
Loading…
Cancel
Save