Skip to content

Commit

Permalink
feat: Raise the default for pagination limit at the projects endpoint…
Browse files Browse the repository at this point in the history
… to 100 (DEV-4095) (#242)
  • Loading branch information
seakayone authored Sep 11, 2024
1 parent 4fb32bd commit 522b1ad
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/domain/metadata_repository.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ pub struct Pagination {
}
impl Default for Pagination {
fn default() -> Self {
Pagination { page: 1, limit: 10 }
Pagination {
page: 1,
limit: 100,
}
}
}

Expand Down

0 comments on commit 522b1ad

Please sign in to comment.