wireguard: Create URL for client config QR action

Signed-off-by: Frederico Gomes <fredericojfgomes@gmail.com>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Frederico Gomes 2026-05-18 01:42:30 +01:00 committed by James Valleroy
parent fa4e6002b3
commit 5f25fc56a5
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -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<public_key>[^/]+)/show/$',
views.ShowClientView.as_view(), name='show-client'),
re_path(r'^apps/wireguard/client/(?P<public_key>[^/]+)/edit/$',