From cfe6be093d25e4695d5f287e74723988aa2b3d6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 20 Jun 2018 10:20:48 +0200 Subject: [PATCH] multitenant: redefine shell as tenant aware (#24661) --- hobo/multitenant/management/commands/shell.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hobo/multitenant/management/commands/shell.py diff --git a/hobo/multitenant/management/commands/shell.py b/hobo/multitenant/management/commands/shell.py new file mode 100644 index 0000000..08bceb3 --- /dev/null +++ b/hobo/multitenant/management/commands/shell.py @@ -0,0 +1,6 @@ +from hobo.multitenant.management.commands import TenantWrappedCommand +from django.core.management.commands import shell + + +class Command(TenantWrappedCommand): + COMMAND = shell.Command -- 2.17.1