mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-02-13 23:25:14 +08:00
7 lines
180 B
Python
7 lines
180 B
Python
from rest_framework.authentication import SessionAuthentication
|
|
|
|
|
|
class CsrfExemptSessionAuthentication(SessionAuthentication):
|
|
def enforce_csrf(self, request):
|
|
return
|