mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 23:02:19 +00:00
11 lines
263 B
Python
11 lines
263 B
Python
|
|
from django.conf.urls.defaults import *
|
|
from reddit 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),
|
|
)
|
|
|