1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05: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;
}
}