File size: 785 Bytes
67b6ab0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | from helpers.api import ApiHandler, Request, Response
from helpers import cache
class CacheReset(ApiHandler):
@classmethod
def requires_auth(cls) -> bool:
return False
@classmethod
def requires_csrf(cls) -> bool:
return False
@classmethod
def requires_api_key(cls) -> bool:
return False
@classmethod
def requires_loopback(cls) -> bool:
return True
@classmethod
def get_methods(cls) -> list[str]:
return ["GET", "POST"]
async def process(self, input: dict, request: Request) -> dict | Response:
areas = input.get("areas", [])
if not areas:
cache.clear_all()
else:
for area in areas:
cache.clear(area)
return {"ok": True}
|