From 0cb468ca9bcec4f65d7e2627339cc95e966aee1f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 24 Oct 2011 12:59:45 -0400 Subject: [PATCH] Added and enabled the acls and document_acls apps --- settings.py | 2 ++ urls.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/settings.py b/settings.py index 25182f6e98..9fb0fe96e6 100644 --- a/settings.py +++ b/settings.py @@ -133,6 +133,7 @@ INSTALLED_APPS = ( 'lock_manager', 'web_theme', 'common', + 'acls', 'metadata', 'pagination', 'dynamic_search', @@ -155,6 +156,7 @@ INSTALLED_APPS = ( 'grouping', 'mptt', 'document_indexing', + 'document_acls', 'ocr', 'sources', 'mimetype', diff --git a/urls.py b/urls.py index 6127fe570e..f78307b60e 100644 --- a/urls.py +++ b/urls.py @@ -28,6 +28,8 @@ urlpatterns = patterns('', (r'^sources/', include('sources.urls')), (r'^project_setup/', include('project_setup.urls')), (r'^project_tools/', include('project_tools.urls')), + (r'^acls/', include('acls.urls')), + (r'^document_acls/', include('document_acls.urls')), )