mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 06:53:03 +00:00

Adds new config settings for no. of communities to display on the home page & community-list page. Resolves #1749, resolves #1750
13 lines
344 B
TypeScript
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;
|
|
}
|