File size: 365 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
// Maximum number of comments that will be shown per page.
export const COMMENTS_PER_PAGE = 20;
// Allowed values for comments list sort order.
// Currently the sorting is done by comparing the values of comment IDs,
// and relying on the fact that more recent comments have higher ID values.
export const NEWEST_FIRST = 'desc';
export const OLDEST_FIRST = 'asc';
|