Browse Source

Add skeleton for VPN configuration

Baptiste Jonglez 11 years ago
parent
commit
9ff6856b7a

+ 2 - 1
coin/settings.py

@@ -151,7 +151,8 @@ INSTALLED_APPS = (
     'coin.offers',
     'coin.billing',
     'coin.resources',
-    'coin.reverse_dns'
+    'coin.reverse_dns',
+    'coin.vpn_conf'
 )
 
 # A sample logging configuration. The only tangible logging

+ 0 - 0
coin/vpn_conf/__init__.py


+ 3 - 0
coin/vpn_conf/admin.py

@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.

+ 3 - 0
coin/vpn_conf/models.py

@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.

+ 3 - 0
coin/vpn_conf/tests.py

@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.

+ 3 - 0
coin/vpn_conf/views.py

@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.