From b62da79a0ee88f061c99a7a08b292eeebb822f68 Mon Sep 17 00:00:00 2001 From: Rene Krenn Date: Wed, 15 Nov 2023 15:23:03 +0100 Subject: [PATCH] MT#56239 avoid ambersand symbol in apidoc descriptions Change-Id: Ic024d16c008648cb4d9cf14ae0e58d1ebe8febe9 (cherry picked from commit 71480acfa36b64ae9f29d7685ca5d5d647be1b37) --- lib/NGCP/Panel/Controller/API/CallRecordings.pm | 4 ++-- lib/NGCP/Panel/Controller/API/Conversations.pm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/NGCP/Panel/Controller/API/CallRecordings.pm b/lib/NGCP/Panel/Controller/API/CallRecordings.pm index d26531c0f9..e6f0e00412 100644 --- a/lib/NGCP/Panel/Controller/API/CallRecordings.pm +++ b/lib/NGCP/Panel/Controller/API/CallRecordings.pm @@ -52,11 +52,11 @@ sub query_params { }, { param => 'caller', - description => "Filter by caller number (append &wildcards=true query parameter to allow patterns using '*' wildcards).", + description => "Filter by caller number (append wildcards=true query parameter to allow patterns using '*' wildcards).", }, { param => 'callee', - description => "Filter by callee number (append &wildcards=true query parameter to allow patterns using '*' wildcards).", + description => "Filter by callee number (append wildcards=true query parameter to allow patterns using '*' wildcards).", }, { param => 'start_time', diff --git a/lib/NGCP/Panel/Controller/API/Conversations.pm b/lib/NGCP/Panel/Controller/API/Conversations.pm index 9e54e7a0d5..4128222775 100644 --- a/lib/NGCP/Panel/Controller/API/Conversations.pm +++ b/lib/NGCP/Panel/Controller/API/Conversations.pm @@ -68,11 +68,11 @@ sub query_params { }, { param => 'caller', - description => "Filter for conversation events by caller number (append &wildcards=true query parameter to allow patterns using '*' wildcards).", + description => "Filter for conversation events by caller number (append wildcards=true query parameter to allow patterns using '*' wildcards).", }, { param => 'callee', - description => "Filter for conversation events by callee number (append &wildcards=true query parameter to allow patterns using '*' wildcards).", + description => "Filter for conversation events by callee number (append wildcards=true query parameter to allow patterns using '*' wildcards).", }, ];