From: Tony Mack Date: Tue, 9 Apr 2013 23:06:01 +0000 (-0400) Subject: include api root here for now X-Git-Tag: 1.0~148 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=9a3511e3ab450da5c5b3aaf450f843b85af348e4;p=plstackapi.git include api root here for now --- diff --git a/plstackapi/core/urls.py b/plstackapi/core/urls.py index f1e3ba5..985fd48 100644 --- a/plstackapi/core/urls.py +++ b/plstackapi/core/urls.py @@ -63,6 +63,6 @@ urlpatterns = patterns('', url(r'^plstackapi/flavors/$', FlavorListCreate.as_view(), name='flavor-list'), url(r'^plstackapi/flavors/(?P[a-zA-Z0-9_]+)/$', FlavorRetrieveUpdateDestroy.as_view(), name='flavor-detail'), #Adding in rest_framework urls - #url(r'^plstackapi/', include('rest_framework.urls', namespace='rest_framework')), + url(r'^plstackapi/', include('rest_framework.urls', namespace='rest_framework')), )