const getProjectContributorsListVM = () => {
    models.contributor.pageSize(15);
    const projectContributorsListVM = catarse.paginationVM(models.contributor, null, { Prefer: 'count=exact' });
    return h.createBasicPaginationVMWithAutoRedraw(projectContributorsListVM);
}