dynamicweb/datacenterlight/management/commands/cmsintegrate.py

22 lines
731 B
Python
Raw Permalink Normal View History

2018-03-28 19:13:38 +00:00
from django.core.management.base import BaseCommand
from datacenterlight.cms_models import CMSIntegration
class Command(BaseCommand):
help = '''Creates cms integration objects for datacenterlight'''
def handle(self, *args, **options):
self.create_cms_integration()
def create_cms_integration(self, site=None):
obj, created = CMSIntegration.objects.get_or_create(
name='default', domain=site
)
domain_name = site.domain if site else 'All Sites'
2018-03-28 19:13:38 +00:00
if created:
print('created the default CMSIntegration object for', domain_name)
2018-03-28 19:13:38 +00:00
else:
print(
'default CMSIntegration object already exists for', domain_name
)