Skip to content

Commit 33d0ebd

Browse files
committed
DBC22-1261: management task to populate ferries data
1 parent bd50a92 commit 33d0ebd

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

src/backend/apps/cms/management/__init__.py

Whitespace-only changes.

src/backend/apps/cms/management/commands/__init__.py

Whitespace-only changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from apps.cms.tasks import populate_all_ferry_data
2+
from django.core.management.base import BaseCommand
3+
4+
5+
class Command(BaseCommand):
6+
def handle(self, *args, **options):
7+
populate_all_ferry_data()

0 commit comments

Comments
 (0)