forked from ReadBox/readbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
urls.py
26 lines (20 loc) · 852 Bytes
/
urls.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from django.conf.urls import patterns, include, url
from readbox import api
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns(
'',
# Examples:
# url(r'^$', 'readbox.views.home', name='home'),
url(r'^$', 'readbox.views.index'),
url(r'^readbox/', include('readbox.urls')),
url(r'^auth/', include('auth.urls')),
url(r'^api/', include(api.api.urls)),
url(r'^tags_input/', include('tags_input.urls', namespace='tags_input')),
# Uncomment the admin/doc line below to enable admin documentation:
url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),
url(r'^oauth2/', include('provider.oauth2.urls', namespace='oauth2')),
)