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/$',