summaryrefslogtreecommitdiff
path: root/meetingtools/apps/room/management/commands/import_rooms.py
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2012-10-04 15:39:08 +0200
committerLeif Johansson <leifj@sunet.se>2012-10-04 15:39:08 +0200
commit2bdad0ae7a3a6e4ec5116becd39910388b679ed2 (patch)
tree5afdfba0a93c1af50d53bdc245d57cc4053e109a /meetingtools/apps/room/management/commands/import_rooms.py
parent873e7823970352d591deee5f67f47c5436ee0e84 (diff)
restructure
Diffstat (limited to 'meetingtools/apps/room/management/commands/import_rooms.py')
-rw-r--r--meetingtools/apps/room/management/commands/import_rooms.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/meetingtools/apps/room/management/commands/import_rooms.py b/meetingtools/apps/room/management/commands/import_rooms.py
new file mode 100644
index 0000000..7944be8
--- /dev/null
+++ b/meetingtools/apps/room/management/commands/import_rooms.py
@@ -0,0 +1,11 @@
+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