From dee0bf8f8d350bfa26155c2c60b7ee17702225c8 Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Wed, 7 Aug 2013 10:02:33 +0200 Subject: [PATCH] Show UUID in subscriber list. --- lib/NGCP/Panel/Controller/Subscriber.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/NGCP/Panel/Controller/Subscriber.pm b/lib/NGCP/Panel/Controller/Subscriber.pm index 5c0bb9a60c..092b66fc15 100644 --- a/lib/NGCP/Panel/Controller/Subscriber.pm +++ b/lib/NGCP/Panel/Controller/Subscriber.pm @@ -79,6 +79,7 @@ sub sub_list :Chained('/') :PathPart('subscriber') :CaptureArgs(0) { { name => "contract.contact.email", search => 1, title => "Contact Email" }, { name => "username", search => 1, title => "Username" }, { name => "domain.domain", search => 1, title => "Domain" }, + { name => "uuid", search => 1, title => "UUID" }, { name => "status", search => 1, title => "Status" }, ]); } @@ -2391,6 +2392,9 @@ sub edit_speeddial :Chained('speeddial') :PathPart('edit') :Args(0) { sub callflow_base :Chained('base') :PathPart('callflow') :CaptureArgs(1) { my ($self, $c, $callid) = @_; + $c->detach('/denied_page') + unless($c->config->{features}->{callflow}); + my $decoder = URI::Encode->new; $c->stash->{callid} = $decoder->decode($callid); }