[web] Make sure no one mistakes our software as apolitical

This commit is contained in:
Emi Simpson 2021-11-02 13:36:54 -04:00
parent 74e41de309
commit 56dbe50d2f
Signed by: Emi
GPG Key ID: A12F2C2FFDC3D847
1 changed files with 5 additions and 1 deletions

View File

@ -347,7 +347,11 @@ impl Route {
Ok(Response {
status: b"200",
headers: Cow::Borrowed(&[]),
headers: Cow::Borrowed(&[
(b"Trans-Women", Cow::Borrowed(b"don't owe you femininity")),
(b"Trans-Men", Cow::Borrowed(b"don't owe you masculinity")),
(b"And-Stop-Projecting-Your-Dated-Gender-Norms", Cow::Borrowed(b"onto nonbinary people's life experiences")),
]),
body: body.into_bytes().into(),
})
}