選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
|
|
from django.utils.deprecation import MiddlewareMixin
|
|
|
|
|
|
|
|
|
|
|
|
class SameSiteMiddleware(MiddlewareMixin):
|
|
|
|
def process_response(self, request, response):
|
|
|
|
if 'sessionid' in response.cookies:
|
|
|
|
response.cookies['sessionid']['samesite'] = 'Strict'
|
|
|
|
if 'csrftoken' in response.cookies:
|
|
|
|
response.cookies['csrftoken']['samesite'] = 'Strict'
|
|
|
|
return response
|