Skip to content

Commit

Permalink
Develop (#62)
Browse files Browse the repository at this point in the history
* Add missing steps of setup to docs (#48)

* add missing steps of setup to docs

* docs: fix broken numbered list and broken internal link

* Add missing closing brace in docs (#51) (#53)

* Add context to UserSerializer (#56)

* Add missing URL name in docs (#61)

* Add missing closing brace in docs (#51)

* Minor release (#57)

* Add missing steps of setup to docs (#48)

* add missing steps of setup to docs

* docs: fix broken numbered list and broken internal link

* Add missing closing brace in docs (#51) (#53)

* Add context to UserSerializer (#56)

* Add missing URL name in docs
  • Loading branch information
belugame authored Jun 23, 2017
1 parent 7f9d9f0 commit 5c1a82a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ from yourapp.api.views import LoginView
urlpatterns = [
url(r'login/', LoginView.as_view(), name='knox_login'),
url(r'logout/', knox_views.LogoutView.as_view(), name='knox_logout'),
url(r'logoutall/', knox_views.LogoutAllView.as_view()),
url(r'logoutall/', knox_views.LogoutAllView.as_view(), name='knox_logoutall'),
]
```

0 comments on commit 5c1a82a

Please sign in to comment.