From 551cc2fb982b4efeb575931542f7bae57bf87be4 Mon Sep 17 00:00:00 2001 From: Marco Capetta Date: Wed, 17 Jul 2024 13:21:56 +0200 Subject: [PATCH] MT#60515 rename hm inbound/outbound directions to a_inbound/a_outbound inbound/outbound no longer represent the "full" direction and belong only to A leg, so they are renamed to a_inbound/a_outbound accordingly. Change-Id: I639b799c3649c9b3ca78eee831b49ef0cfa14287 --- lib/NGCP/Panel/Form/Header/Rule.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/NGCP/Panel/Form/Header/Rule.pm b/lib/NGCP/Panel/Form/Header/Rule.pm index 5651465d77..22a96f134b 100644 --- a/lib/NGCP/Panel/Form/Header/Rule.pm +++ b/lib/NGCP/Panel/Form/Header/Rule.pm @@ -31,10 +31,10 @@ has_field 'priority' => ( has_field 'direction' => ( type => 'Select', options => [ - { label => 'Inbound', value => 'inbound' }, + { label => 'A-Leg Inbound', value => 'a_inbound' }, { label => 'Local', value => 'local' }, { label => 'Peer', value => 'peer' }, - { label => 'Outbound', value => 'outbound' }, + { label => 'A-Leg Outbound', value => 'a_outbound' }, { label => 'B-Leg Outbound', value => 'b_outbound' }, { label => 'Call Forward Inbound', value => 'cf_inbound' }, { label => 'Call Forward Outbound', value => 'cf_outbound' },