mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
9 lines
212 B
Python
9 lines
212 B
Python
|
from rest_framework.authentication import SessionAuthentication
|
||
|
|
||
|
|
||
|
class BaseSessionAuthentication(SessionAuthentication):
|
||
|
|
||
|
# Disable csrf for the rest apis
|
||
|
def enforce_csrf(self, request):
|
||
|
return
|