Browse Source

Remove TODO items (yeay)

Baptiste Jonglez 11 years ago
parent
commit
308fbeeb83
2 changed files with 1 additions and 2 deletions
  1. 1 1
      coin/vpn/admin.py
  2. 0 1
      coin/vpn/models.py

+ 1 - 1
coin/vpn/admin.py

@@ -2,7 +2,7 @@ from django.contrib import admin
 
 from coin.vpn.models import VPNSubscription
 
-# TODO: allow to regenerate IP endpoints (checkbox?)
+
 class VPNAdmin(admin.ModelAdmin):
     list_display = ('administrative_subscription', 'activated', 'login',
                     'ipv4_endpoint', 'ipv6_endpoint', 'comment')

+ 0 - 1
coin/vpn/models.py

@@ -55,7 +55,6 @@ class VPNSubscription(CoinLdapSyncModel):
         # custom form.
         limit_choices_to={'offer__backend': 'openvpn_ldap'},
         validators=[validate_backend_type])
-    # TODO: do some access control to prevent the user from changing this field
     activated = models.BooleanField(default=False)
     login = models.CharField(max_length=50, unique=True)
     password = models.CharField(max_length=256)