2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 20:15:44 +00:00

Load plugins for collectstatic (#4077)

This commit is contained in:
Lukas
2022-12-19 00:00:41 +01:00
committed by GitHub
parent 8159ea3c02
commit 1d411b26a9

View File

@ -32,7 +32,6 @@ def canAppAccessDatabase(allow_test: bool = False, allow_plugins: bool = False):
'prerender', 'prerender',
'rebuild_models', 'rebuild_models',
'rebuild_thumbnails', 'rebuild_thumbnails',
'collectstatic',
'makemessages', 'makemessages',
'compilemessages', 'compilemessages',
'backup', 'backup',
@ -51,6 +50,7 @@ def canAppAccessDatabase(allow_test: bool = False, allow_plugins: bool = False):
excluded_commands.extend([ excluded_commands.extend([
'makemigrations', 'makemigrations',
'migrate', 'migrate',
'collectstatic',
]) ])
for cmd in excluded_commands: for cmd in excluded_commands: