cablegates/pandora/oxuser/urls.py

15 lines
310 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-06-24 13:18:33 +00:00
urlpatterns = patterns("oxuser.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'),
)