mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
8 lines
179 B
Python
8 lines
179 B
Python
![]() |
from django.conf.urls.defaults import *
|
||
|
from apps.profile import views
|
||
|
|
||
|
urlpatterns = patterns('',
|
||
|
(r'^get/?', views.get_preference),
|
||
|
(r'^set/?', views.set_preference),
|
||
|
)
|