1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-26 16:25:06 +03:00

Tastypie URLs go here

This commit is contained in:
Michael DeHaan 2013-03-13 17:29:20 -04:00
parent b7b737e38d
commit 6ff6769a06
3 changed files with 7 additions and 0 deletions

0
lib/api/__init__.py Normal file
View File

6
lib/api/urls.py Normal file
View File

@ -0,0 +1,6 @@
from django.conf import settings
from django.conf.urls import *
urlpatterns = patterns('',
# (r'^', fooooooo),
)

View File

@ -4,6 +4,7 @@ from django.conf.urls import *
urlpatterns = patterns('',
# Example:
# (r'^foo/', include('lib.foo.urls')),
(r'^api/', include('lib.api.urls')),
)
if 'django.contrib.admin' in settings.INSTALLED_APPS: