Private
Public Access
1
0

further playing

This commit is contained in:
Sander Roosendaal
2016-11-19 14:22:34 +01:00
parent eb055d5f32
commit 60edc3f3c2
2 changed files with 3 additions and 0 deletions

View File

@@ -61,6 +61,7 @@ handler403 = 'views.error403_view'
urlpatterns = [
# url(r'^password_change/$',auth_views.password_change),
# url(r'^password_change_done/$',auth_views.password_change_done),
url(r'^oauth2/', include('provider.oauth2.urls', namespace = 'oauth2')),
url(r'^', include(router.urls)),
url(r'^api-docs$', views.schema_view),
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')),

View File

@@ -49,6 +49,8 @@ INSTALLED_APPS = [
'django_mailbox',
'rest_framework',
'rest_framework_swagger',
'provider',
# 'provider.oauth2',
]
MIDDLEWARE_CLASSES = [