summaryrefslogtreecommitdiff
path: root/src/meetingtools/apps/room/management/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/meetingtools/apps/room/management/commands')
-rw-r--r--src/meetingtools/apps/room/management/commands/__init__.py1
-rw-r--r--src/meetingtools/apps/room/management/commands/import_rooms.py11
2 files changed, 0 insertions, 12 deletions
diff --git a/src/meetingtools/apps/room/management/commands/__init__.py b/src/meetingtools/apps/room/management/commands/__init__.py
deleted file mode 100644
index 3929ed7..0000000
--- a/src/meetingtools/apps/room/management/commands/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-__author__ = 'leifj'
diff --git a/src/meetingtools/apps/room/management/commands/import_rooms.py b/src/meetingtools/apps/room/management/commands/import_rooms.py
deleted file mode 100644
index 7944be8..0000000
--- a/src/meetingtools/apps/room/management/commands/import_rooms.py
+++ /dev/null
@@ -1,11 +0,0 @@
-from django.core.management import BaseCommand
-from meetingtools.apps.cluster.models import ACCluster
-from meetingtools.apps.room.tasks import import_acc
-
-__author__ = 'leifj'
-
-class Command(BaseCommand):
-
- def handle(self, *args, **options):
- for acc in ACCluster.objects.all():
- import_acc(acc,since=0) \ No newline at end of file