From 9e9f097de81aedb25bee43cb11575f8464cef3dc Mon Sep 17 00:00:00 2001 From: Kirill Solomko Date: Tue, 23 Jun 2026 13:39:13 +0200 Subject: [PATCH] MT#65368 fix UI /logout link * when /logout is used on the old UI, it no longer produces ERROR: Couldn't render template "logout/logout_index.tt" Change-Id: I94f29c8a400da509ca26ddf2f410ddc76edec55f (cherry picked from commit f21064a2d483af3ec2989a6a77f4fc67cbbb18e9) --- lib/NGCP/Panel/Controller/Logout.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/NGCP/Panel/Controller/Logout.pm b/lib/NGCP/Panel/Controller/Logout.pm index 2e3ab063b0..b59b35ee07 100644 --- a/lib/NGCP/Panel/Controller/Logout.pm +++ b/lib/NGCP/Panel/Controller/Logout.pm @@ -23,8 +23,10 @@ Catalyst Controller. =cut -sub logout_index :Path { +sub auto :Private { my ($self, $c) = @_; + + return 1; } sub logout :Chained('/') :PathPart('logout') :Args(0) {