Files
plane/apps/api/plane/app/authentication/session.py
T

8 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