mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 12:29:17 +02:00
6 lines
163 B
Python
6 lines
163 B
Python
|
|
|
|
class AnonymousSessionMiddleware(object):
|
|
def process_request(self, request):
|
|
if not request.session.session_key:
|
|
request.session.save()
|