root / entrouvert / djommon / multitenant / management / commands / createsuperuser.py @ ccec1ff4
| 1 |
# this file derive from django-tenant-schemas
|
|---|---|
| 2 |
# Author: Bernardo Pires Carneiro
|
| 3 |
# Email: carneiro.be@gmail.com
|
| 4 |
# License: MIT license
|
| 5 |
# Home-page: http://github.com/bcarneiro/django-tenant-schemas
|
| 6 |
from entrouvert.djommon.multitenant.management.commands import TenantWrappedCommand |
| 7 |
from django.contrib.auth.management.commands import createsuperuser |
| 8 |
|
| 9 |
|
| 10 |
class Command(TenantWrappedCommand): |
| 11 |
COMMAND = createsuperuser.Command |