From 0a67183fe4c2a247ca206ce6be9ab44d83fd8a64 Mon Sep 17 00:00:00 2001 From: Frederico Gomes Date: Sat, 21 Mar 2026 12:12:40 +0000 Subject: [PATCH] wireguard: Add URL for AutoAddClientView Signed-off-by: Frederico Gomes Reviewed-by: James Valleroy --- plinth/modules/wireguard/urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plinth/modules/wireguard/urls.py b/plinth/modules/wireguard/urls.py index 1c44b551e..2f0e257fb 100644 --- a/plinth/modules/wireguard/urls.py +++ b/plinth/modules/wireguard/urls.py @@ -13,6 +13,8 @@ urlpatterns = [ views.EnableServerView.as_view(), name='enable-server'), re_path(r'^apps/wireguard/client/add/$', views.AddClientView.as_view(), 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/(?P[^/]+)/show/$', views.ShowClientView.as_view(), name='show-client'), re_path(r'^apps/wireguard/client/(?P[^/]+)/edit/$',