MT#20457 subscriber put on hold is notified with a=sendonly in reINVITE

Change-Id: Id7fb1975496636da648dbfdd9ae03ab27c42060c
changes/49/6849/4
Jozef Kenyeres 9 years ago
parent ec4911a71f
commit f115bcf726

@ -0,0 +1,3 @@
USE provisioning;
DELETE FROM voip_preferences WHERE attribute = 'set_moh_sendonly';

@ -0,0 +1,13 @@
USE provisioning;
set autocommit = 0;
SELECT id INTO @vpgid FROM voip_preference_groups WHERE name = 'NAT and Media Flow Control';
INSERT INTO voip_preferences (id, voip_preference_groups_id, attribute, label, type, max_occur,
usr_pref, prof_pref, dom_pref, peer_pref, contract_pref, modify_timestamp, internal,
expose_to_customer, data_type, read_only, description) VALUES
(NULL, @vpgid, 'set_moh_sendonly', 'MoH sendonly', 0, 1, 1, 0, 1, 1, 0, now(), 0, 1,
'boolean', 0, 'Subscriber put on hold is notified with a=sendonly in reINVITE.'
);
commit;
Loading…
Cancel
Save