diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-03-18 17:56:11 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-03-18 17:56:11 +0100 |
| commit | bef95130a2bdabd196f595a1129ac07bd3f5054b (patch) | |
| tree | 705b284ac4a0c2d6cc2ed893d8c992a507073f3c /server/src/routes/stats.rs | |
| parent | 53b0268eaa850d0a7250c94373d76906a7b28250 (diff) | |
| download | jellything-bef95130a2bdabd196f595a1129ac07bd3f5054b.tar jellything-bef95130a2bdabd196f595a1129ac07bd3f5054b.tar.bz2 jellything-bef95130a2bdabd196f595a1129ac07bd3f5054b.tar.zst | |
send page title with header when jst
Diffstat (limited to 'server/src/routes/stats.rs')
| -rw-r--r-- | server/src/routes/stats.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/routes/stats.rs b/server/src/routes/stats.rs index 387ca63..f8afe55 100644 --- a/server/src/routes/stats.rs +++ b/server/src/routes/stats.rs @@ -7,6 +7,6 @@ use crate::{request_info::RequestInfo, ui::error::MyResult}; use rocket::{get, response::content::RawHtml}; #[get("/stats")] -pub fn r_stats(ri: RequestInfo) -> MyResult<RawHtml<String>> { +pub fn r_stats(ri: RequestInfo) -> MyResult<UiPage> { todo!() } |