diff options
| author | Xe Iaso <me@christine.website> | 2023-01-04 14:37:22 -0500 |
|---|---|---|
| committer | Xe Iaso <me@christine.website> | 2023-01-04 14:37:22 -0500 |
| commit | 351069d9f91edab96425bcd221858529acb7e08a (patch) | |
| tree | 8d601372b5e67e6f129ff896204cdc97a49d8f3d /src/main.rs | |
| parent | b96a44649a5cdf7609ebdc975a118c01cbd74b1a (diff) | |
| download | xesite-351069d9f91edab96425bcd221858529acb7e08a.tar.xz xesite-351069d9f91edab96425bcd221858529acb7e08a.zip | |
implement pronouns support
Signed-off-by: Xe Iaso <me@christine.website>
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 3952975..37c0a4d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -161,6 +161,7 @@ async fn main() -> Result<()> { ), ) // api + .route("/api/pronouns", get(handlers::api::pronouns)) .route("/api/new_post", get(handlers::feeds::new_post)) .route( "/api/salary_transparency.json", @@ -176,6 +177,7 @@ async fn main() -> Result<()> { .route("/patrons", get(handlers::patrons)) .route("/signalboost", get(handlers::signalboost)) .route("/salary-transparency", get(handlers::salary_transparency)) + .route("/pronouns", get(handlers::pronouns)) // feeds .route("/blog.json", get(handlers::feeds::jsonfeed)) .route("/blog.atom", get(handlers::feeds::atom)) |
