wireguard: Add URL for AutoAddClientView

Signed-off-by: Frederico Gomes <fredericojfgomes@gmail.com>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Frederico Gomes 2026-03-21 12:12:40 +00:00 committed by James Valleroy
parent 36e1dd9e74
commit 0a67183fe4
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -13,6 +13,8 @@ urlpatterns = [
views.EnableServerView.as_view(), name='enable-server'), views.EnableServerView.as_view(), name='enable-server'),
re_path(r'^apps/wireguard/client/add/$', views.AddClientView.as_view(), re_path(r'^apps/wireguard/client/add/$', views.AddClientView.as_view(),
name='add-client'), 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<public_key>[^/]+)/show/$', re_path(r'^apps/wireguard/client/(?P<public_key>[^/]+)/show/$',
views.ShowClientView.as_view(), name='show-client'), views.ShowClientView.as_view(), name='show-client'),
re_path(r'^apps/wireguard/client/(?P<public_key>[^/]+)/edit/$', re_path(r'^apps/wireguard/client/(?P<public_key>[^/]+)/edit/$',