1
0
mirror of https://github.com/bspeice/itcs4180 synced 2025-07-03 06:45:15 -04:00

Wire up the URLs, and add scavenger to apps

This commit is contained in:
Bradlee Speice
2014-03-31 14:23:57 -04:00
parent a1caf0372d
commit 0ec0e61c19
3 changed files with 13 additions and 2 deletions

View File

@ -0,0 +1,8 @@
from django.conf.urls import patterns, url
from rest_framework.urlpatterns import format_suffix_patterns
from scavenger import views
urlpatterns = patterns('',
url(r'^locations/$', views.LocationList.as_view()),
url(r'^validate/$', views.LocationResult.as_view()),
)