feat: wire activity feed, users list, and profile page handlers

This commit is contained in:
2026-05-04 19:12:06 +02:00
parent 6bd1ce8c4a
commit 0b6ac2eb77
3 changed files with 113 additions and 1 deletions

View File

@@ -223,6 +223,13 @@ impl From<DiaryQueryParams> for GetDiaryQuery {
}
}
#[derive(serde::Deserialize, Default)]
pub struct ProfileQueryParams {
pub view: Option<String>,
pub limit: Option<u32>,
pub offset: Option<u32>,
}
#[cfg(test)]
mod tests {
use super::*;