feat: activity feed accepts sort_by param

This commit is contained in:
2026-06-04 01:35:45 +02:00
parent 4206bb4b06
commit 7d6f874ae7
2 changed files with 9 additions and 1 deletions

View File

@@ -47,6 +47,7 @@ pub struct DiaryQueryParams {
pub struct ActivityFeedQueryParams {
pub limit: Option<u32>,
pub offset: Option<u32>,
pub sort_by: Option<String>,
}
#[derive(Debug, Clone, Serialize, Deserialize, utoipa::ToSchema)]