Spaces:
Sleeping
Sleeping
File size: 530 Bytes
5d03c05 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | from python.helpers.api import (
ApiHandler,
Input,
Output,
Request,
Response,
session,
)
from python.helpers import runtime, csrf
class GetCsrfToken(ApiHandler):
@classmethod
def get_methods(cls) -> list[str]:
return ["GET"]
@classmethod
def requires_csrf(cls) -> bool:
return False
async def process(self, input: Input, request: Request) -> Output:
token = csrf.generate_csrf_token()
return {"token": token, "runtime_id": runtime.get_runtime_id()}
|