From 5f25fc56a556a251da828ac138d1ee3364d320d0 Mon Sep 17 00:00:00 2001 From: Frederico Gomes Date: Mon, 18 May 2026 01:42:30 +0100 Subject: [PATCH] wireguard: Create URL for client config QR action Signed-off-by: Frederico Gomes Reviewed-by: James Valleroy --- plinth/modules/wireguard/urls.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plinth/modules/wireguard/urls.py b/plinth/modules/wireguard/urls.py index 88504d6b2..e2730580d 100644 --- a/plinth/modules/wireguard/urls.py +++ b/plinth/modules/wireguard/urls.py @@ -18,6 +18,9 @@ urlpatterns = [ re_path(r'^apps/wireguard/client/auto-add/action/download/$', views.ClientActionsView.as_view(action='download'), name='auto-add-client-download'), + re_path(r'^apps/wireguard/client/auto-add/action/qr/$', + views.ClientActionsView.as_view(action='qr'), + name='auto-add-client-qr'), re_path(r'^apps/wireguard/client/(?P[^/]+)/show/$', views.ShowClientView.as_view(), name='show-client'), re_path(r'^apps/wireguard/client/(?P[^/]+)/edit/$',