Dozens of UI Changes to FIlter List, Filter Editor, and Scheduled Job Creator

This commit is contained in:
2025-11-23 05:56:49 -07:00
parent 3c142421a7
commit 225bd3e427
4 changed files with 686 additions and 375 deletions

View File

@@ -33,6 +33,9 @@ def register(
def _hash_token(token: str) -> str:
return hashlib.sha256(token.encode("utf-8")).hexdigest()
def _iso(dt: datetime) -> str:
return dt.astimezone(timezone.utc).isoformat()
def _iso_now() -> str:
return datetime.now(tz=timezone.utc).isoformat()