aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/urls.py
blob: 5c797bcdbb4b0b506bdaffbc0716f92acfa9796f (plain)
1
2
3
4
5
6
from django.conf.urls.defaults import patterns

urlpatterns = patterns('djangorestframework.utils.staticviews',
    (r'^accounts/login/$', 'api_login'),
    (r'^accounts/logout/$', 'api_logout'),
)