cablegates/pandora/user/urls.py

15 lines
308 B
Python
Raw Normal View History

2010-01-25 09:20:21 +00:00
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
from django.conf.urls.defaults import *
2010-10-16 11:58:57 +00:00
urlpatterns = patterns("user.views",
2010-01-25 09:20:21 +00:00
(r'^preferences', 'api_preferences'),
(r'^login', 'api_login'),
(r'^logout', 'api_logout'),
(r'^register', 'api_register'),
(r'^recover', 'api_recover'),
)