mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
12 lines
261 B
Python
12 lines
261 B
Python
|
|
from django.conf.urls.defaults import *
|
|
|
|
from sso import views
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^profile/add/reddit', views.reddit_add),
|
|
(r'^profile/del/reddit/$', views.reddit_del),
|
|
(r'^profile/del/reddit/(?P<redditid>\d+)/$', views.reddit_del),
|
|
)
|
|
|