From 256da729589d987b9c8418719ee4d1867c29460b Mon Sep 17 00:00:00 2001 From: frdel <38891707+frdel@users.noreply.github.com> Date: Wed, 25 Jun 2025 13:39:54 +0200 Subject: [PATCH] Update rfc.py --- python/api/rfc.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python/api/rfc.py b/python/api/rfc.py index 149910ae7..82fa2f739 100644 --- a/python/api/rfc.py +++ b/python/api/rfc.py @@ -4,6 +4,11 @@ from flask import Request, Response from python.helpers import runtime class RFC(ApiHandler): + + @classmethod + def requires_csrf(cls) -> bool: + return False + async def process(self, input: dict, request: Request) -> dict | Response: result = await runtime.handle_rfc(input) # type: ignore return result