set default page size for user collection pagination

This commit is contained in:
Mads Rasmussen
2023-11-06 12:39:59 +01:00
parent c34e3303e3
commit ed51673618

View File

@@ -6,7 +6,7 @@ import { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller-api
export class UmbUserCollectionContext extends UmbCollectionContext<UmbUserDetail, UmbUserCollectionFilterModel> {
constructor(host: UmbControllerHostElement) {
super(host, USER_ENTITY_TYPE, USER_COLLECTION_REPOSITORY_ALIAS);
super(host, USER_ENTITY_TYPE, USER_COLLECTION_REPOSITORY_ALIAS, { pageSize: 50 });
}
/**