This is an automated email from the ASF dual-hosted git repository. sbp pushed a commit to branch sbp in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git
commit 645aefb074e157de68961d0cd282144f90799df7 Author: Sean B. Palmer <[email protected]> AuthorDate: Wed Mar 11 15:12:29 2026 +0000 Require a CSRF token on all forms --- atr/models/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atr/models/schema.py b/atr/models/schema.py index 6868de57..13658cac 100644 --- a/atr/models/schema.py +++ b/atr/models/schema.py @@ -45,7 +45,7 @@ class Form(pydantic.BaseModel): str_strip_whitespace=True, ) - csrf_token: str | None = None + csrf_token: str def alias(alias_name: str) -> Any: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
