Commit ba3bf72d9141546513cb2a89ba0ba32b6650edbc

Authored by Felipe Bormann
1 parent ebae5772

added url and app to project

Showing 2 changed files with 2 additions and 0 deletions   Show diff stats
amadeus/settings.py
... ... @@ -82,6 +82,7 @@ INSTALLED_APPS = [
82 82 'reports',
83 83 'webconference',
84 84 'news',
  85 + 'analytics',
85 86 ]
86 87  
87 88 MIDDLEWARE_CLASSES = [
... ...
amadeus/urls.py
... ... @@ -45,6 +45,7 @@ urlpatterns = [
45 45 url(r'^webconferences/', include('webconference.urls', namespace = 'webconferences')),
46 46 url(r'^news/', include('news.urls', namespace='news')),
47 47 url(r'^i18n/', include('django.conf.urls.i18n')),
  48 + url(r'^analytics/', include('analytics.urls', namespace='analytics')),
48 49 #API
49 50 url(r'^o/', include('oauth2_provider.urls', namespace='oauth2_provider')),
50 51 #S3Direct
... ...