Revert "TT#1477 MaliciousCalls API fix param filter by caller/callee/callid"

* Wrong TT number

This reverts commit a12fe6bd4e.

Change-Id: Iee555597e5451f099ab7b3e15b36ca77a2cabc5c
changes/65/11465/1
Kirill Solomko 9 years ago
parent a12fe6bd4e
commit d652a80441

@ -49,7 +49,7 @@ sub query_params {
first => sub {
my $q = shift;
{
'me.call_id' => $q,
'me.call_id' => { '!=' => $q },
};
},
second => sub {},
@ -62,7 +62,7 @@ sub query_params {
first => sub {
my $q = shift;
{
'me.caller' => $q,
'me.caller' => { '!=' => $q },
};
},
second => sub {},
@ -75,7 +75,7 @@ sub query_params {
first => sub {
my $q = shift;
{
'me.callee' => $q,
'me.callee' => { '!=' => $q },
};
},
second => sub {},

Loading…
Cancel
Save