Skip to content

Commit b4e03a5

Browse files
committed
Move importapiusers mgt command to api app
I had originally put the `importapiusers` management command in the `sierra` app in order to keep it with the other commands, but this one actually needs to be run in production, and the `sierra` app is not installed there. It makes more sense to keep it with the `api` app, so I've moved it there.
1 parent 978e059 commit b4e03a5

4 files changed

Lines changed: 1 addition & 1 deletion

File tree

django/sierra/api/management/__init__.py

Whitespace-only changes.

django/sierra/api/management/commands/__init__.py

Whitespace-only changes.

django/sierra/sierra/management/commands/importapiusers.py renamed to django/sierra/api/management/commands/importapiusers.py

File renamed without changes.

django/sierra/sierra/tests/test_importapiusers.py renamed to django/sierra/api/tests/test_importapiusers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from django.core.management.base import CommandError
1010
from django.utils.six import StringIO
1111

12-
from sierra.management.commands import importapiusers
12+
from api.management.commands import importapiusers
1313

1414

1515
# FIXTURES AND TEST DATA

0 commit comments

Comments
 (0)