Browse Source

Fix commit 9814c00f (Allow editing VPN parameters)

Baptiste Jonglez 10 years ago
parent
commit
020a485bef
1 changed files with 1 additions and 1 deletions
  1. 1 1
      coin/vpn/views.py

+ 1 - 1
coin/vpn/views.py

@@ -14,7 +14,7 @@ from coin.vpn.models import VPNConfiguration
 
 
 class VPNView(UpdateView):
-    model = VPNSubscription
+    model = VPNConfiguration
     fields = ['ipv4_endpoint', 'ipv6_endpoint', 'comment']
 
     @method_decorator(login_required)