Project

General

Profile

Download (302 Bytes) Statistics
| Branch: | Tag: | Revision:

root / entrouvert / djommon / multitenant / management / commands / get_tenant_by_domain.py @ 7e82bd8e

1
from django.core.management.base import BaseCommand
2
from entrouvert.djommon.multitenant.middleware import TenantMiddleware
3

    
4
class Command(BaseCommand):
5
    help = "Create schemas"
6

    
7
    def handle(self, *args, **options):
8
        for arg in args:
9
            print TenantMiddleware.hostname2schema(arg)
(5-5/11)