Skip to content

Commit

Permalink
Changed msgbox search size from 100 to 5000
Browse files Browse the repository at this point in the history
  • Loading branch information
Henning Normann committed Oct 11, 2024
1 parent 9feaa5e commit 80d46ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/Controllers/MessageboxInstancesController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public async Task<ActionResult> SearchMessageBoxInstances([FromBody] MessageBoxQ

InstanceQueryParameters queryParams = GetQueryParams(queryModel);
GetStatusFromQueryParams(queryModel.IncludeActive, queryModel.IncludeArchived, queryModel.IncludeDeleted, queryParams);
queryParams.Size = 100;
queryParams.Size = 5000;
queryParams.IsHardDeleted = false;
queryParams.SortBy = "desc:lastChanged";

Expand Down

0 comments on commit 80d46ab

Please sign in to comment.