mq-quiz / src /quizsite /middleware.py
Teddy Xinyuan Chen
2024-10-08T21-49-00Z
c483669
from django.http import HttpResponse
class CSPMiddleware:
def __init__(self, get_response):
self.get_response = get_response
def __call__(self, request):
response = self.get_response(request)
response["Content-Security-Policy"] = "frame-ancestors 'self' https://*.huggingface.com https://*.teddysc.me;"
response["X-Frame-Options"] = "ALLOW-FROM https://*.huggingface.com https://*.teddysc.me"
return response