Update rfc.py

frdel committed Jun 25, 2025 at 13:39 UTC 256da729589d987b9c8418719ee4d1867c29460b
1 file changed +5
python/api/rfc.py
+5
@@ -4,6 +4,11 @@ from flask import Request, Response
4 from python.helpers import runtime
5
6 class RFC(ApiHandler):
7 +
8 + @classmethod
9 + def requires_csrf(cls) -> bool:
10 + return False
11 +
12 async def process(self, input: dict, request: Request) -> dict | Response:
13 result = await runtime.handle_rfc(input) # type: ignore
14 return result