You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- REST view for an authenticated user to get list of sessions (in context of django-rest-durin, this means `AuthToken` instances) and revoke a session. Useful for pages like "View active browser sessions".
32
32
- REST view for an authenticated user to get/create/delete token against a pre-defined client. Useful for pages like "Get API key" where a user can get an API key to be able to interact directly with your project's RESTful API using cURL or a custom client.
If in your ``urls.py`` you have a url pattern with ``include("durin.urls"))``, then
9
+
2 new URL paths ``apiaccess/`` and ``sessions/`` will get added
10
+
to your project if you upgrade to this version.
11
+
12
+
If you do not wish to have these new views, remove the above include statement and
13
+
refer to `durin/urls.py`_ on how to define the URL patterns selectively for the views you want.
14
+
15
+
**Features:**
16
+
17
+
- Session Management serializers and views. (Issue 19_)
18
+
19
+
Refer to Session-Management-Views_ i.e.,
20
+
- REST view for an authenticated user to get list of sessions (in context of django-rest-durin, this means ``AuthToken`` instances) and revoke a session. Useful for pages like "View active browser sessions".
21
+
- REST view for an authenticated user to get/create/delete token against a pre-defined client. Useful for pages like "Get API key" where a user can get an API key to be able to interact directly with your project's RESTful API using cURL or a custom client.
0 commit comments