bb-plane-fork/apps/api/plane/authentication/session.py
2025-07-04 15:32:21 +05:30

7 lines
211 B
Python

from rest_framework.authentication import SessionAuthentication
class BaseSessionAuthentication(SessionAuthentication):
# Disable csrf for the rest apis
def enforce_csrf(self, request):
return