Skip to content

Commit

Permalink
Merge branch 'master' into release_1_5
Browse files Browse the repository at this point in the history
  • Loading branch information
MattBlack85 committed Mar 22, 2021
2 parents 45ecc0e + 592398c commit d7f08d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Alessandro De Angelis
Allisson Azevedo
Anvesh Agarwal
Aristóbulo Meneses
Aryan Iyappan
Ash Christopher
Asif Saif Uddin
Bart Merenda
Expand Down
4 changes: 3 additions & 1 deletion docs/tutorial/tutorial_02.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ URL this view will respond to:
urlpatterns = [
# OAuth 2 endpoints:
path('o/', include(oauth2_endpoint_views, namespace="oauth2_provider")),
# need to pass in a tuple of the endpoints as well as the app's name
# because the app_name attribute is not set in the included module
path('o/', include((oauth2_endpoint_views, 'oauth2_provider'), namespace="oauth2_provider")),
path('api/hello', ApiEndpoint.as_view()), # an example resource endpoint
]
Expand Down

0 comments on commit d7f08d5

Please sign in to comment.