Reorganize app load order

This commit is contained in:
Roberto Rosario
2012-07-26 23:01:29 -04:00
parent ef008c31cb
commit 595c9108fd
2 changed files with 20 additions and 20 deletions

View File

@@ -166,26 +166,26 @@ INSTALLED_APPS = (
'scheduler',
'job_processor',
# Mayan EDMS
'storage',
'documents',
'metadata',
'folders',
'tags',
'document_comments',
'mailer',
'linking',
'document_indexing',
'sources',
'document_acls',
'ocr',
'history',
'rest_api',
'document_signatures',
#'workflows',
'checkouts',
#'bootstrap',
'main',
'installation',
'storage',
'folders',
'tags',
'documents',
'document_comments',
'document_signatures',
'linking',
'metadata',
'ocr',
'document_indexing',
'sources',
'mailer',
'document_acls',
'history',
'workflows',
'checkouts',
'rest_api',
'bootstrap',
# Has to be last so the other apps can register it's signals
'signaler',