1
0
mirror of https://github.com/bitwarden/server synced 2025-12-22 11:13:27 +00:00

event page default is 50

This commit is contained in:
Kyle Spearrin
2018-07-11 14:24:27 -04:00
parent 17ec153fa7
commit f1b8301428
2 changed files with 1 additions and 7 deletions

View File

@@ -3,6 +3,6 @@
public class PageOptions
{
public string ContinuationToken { get; set; }
public int PageSize { get; set; } = 100;
public int PageSize { get; set; } = 50;
}
}