Move the API to the actual server root

master
Bradlee Speice 2013-10-18 17:41:31 -04:00
parent 4443572436
commit c367344441
1 changed files with 1 additions and 1 deletions

View File

@ -18,6 +18,6 @@ urlpatterns = patterns('',
# Uncomment the next line to enable the admin:
# url(r'^admin/', include(admin.site.urls)),
url(r'^gameday/', include('gameday.urls')),
url(r'^api/', include('rest_framework.urls', namespace='rest_framework')),
url(r'', include('gameday.urls')),
)