I am using Django 1.10 with Django-REST.
I need to know if a user is logged in or not (offline / online) How can I do that? I am using token based authentication.
I tried this article but it didn't work for my use case... it seems to be too old
I am using Django 1.10 with Django-REST.
I need to know if a user is logged in or not (offline / online) How can I do that? I am using token based authentication.
I tried this article but it didn't work for my use case... it seems to be too old
Ok, After trying a few different things I got it. Here's how I made it work:
First create a Middleware to store on memcache the last time the user has accessed the server.
Then extend the User serializer with the properties
online
andlast_seen
Settings.py need to have this new settings:
and do not forget to add your middleware: