From ce2ce04979b6dfd97f870493e40531b80e69595e Mon Sep 17 00:00:00 2001 From: Frederico Gomes Date: Sun, 22 Mar 2026 18:50:53 +0000 Subject: [PATCH] wireguard: Create URL for client config download 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 2f0e257fb..88504d6b2 100644 --- a/plinth/modules/wireguard/urls.py +++ b/plinth/modules/wireguard/urls.py @@ -15,6 +15,9 @@ urlpatterns = [ name='add-client'), re_path(r'^apps/wireguard/client/auto-add/$', views.AutoAddClientView.as_view(), name='auto-add-client'), + 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/(?P[^/]+)/show/$', views.ShowClientView.as_view(), name='show-client'), re_path(r'^apps/wireguard/client/(?P[^/]+)/edit/$',