Files
dspace-angular/src/config/browse-communities-config.interface.ts
Mark Cooper 3e803e8411 Make no. of communities per pagination / expansion configurable
Adds new config settings for no. of communities to display on the
home page & community-list page.

Resolves #1749, resolves #1750
2022-09-19 14:29:50 -07:00

13 lines
344 B
TypeScript

import { Config } from './config.interface';
export interface BrowseCommunitiesConfig extends Config {
/**
* Number of entries in the expandable community list (per show more).
*/
communityListPageSize: number;
/**
* Number of entries in the paginated (home page) top level community list.
*/
topLevelPageSize: number;
}