56a6190ce9
* The Explore tab can now sort forums by their: * Most recently updated thread * Topics, Posts or Users (counts) * Show owner information in forum cards * Passive pagination support for the "My List" on forum home page. * Only visible when there are >20 favorited Forums.
33 lines
1.3 KiB
Go
33 lines
1.3 KiB
Go
package config
|
|
|
|
// Number of page buttons to show on a pager. Default shows page buttons
|
|
// 1 thru N (e.g., 1 thru 8) or w/ your page number in the middle surrounded
|
|
// by its neighboring pages.
|
|
const (
|
|
PagerButtonLimit = 6 // only even numbers make a difference
|
|
)
|
|
|
|
// Pagination sizes per page.
|
|
var (
|
|
PageSizeMemberSearch = 60
|
|
PageSizeFriends = 12
|
|
PageSizeBlockList = 12
|
|
PageSizePrivatePhotoGrantees = 12
|
|
PageSizeAdminCertification = 20
|
|
PageSizeAdminFeedback = 20
|
|
PageSizeAdminFeedbackNotesPage = 5 // feedback on User Notes page
|
|
PageSizeChangeLog = 20
|
|
PageSizeAdminUserNotes = 10 // other users' notes
|
|
PageSizeSiteGallery = 16
|
|
PageSizeUserGallery = 16
|
|
PageSizeInboxList = 20 // sidebar list
|
|
PageSizeInboxThread = 10 // conversation view
|
|
PageSizeBrowseForums = 20
|
|
PageSizeForums = 100 // TODO: for main category index view
|
|
PageSizeMyListForums = 20 // "My List" pager on forum home (categories) page.
|
|
PageSizeThreadList = 20 // 20 threads per board, 20 posts per thread
|
|
PageSizeForumAdmin = 20
|
|
PageSizeDashboardNotifications = 50
|
|
PageSizeLikeList = 12 // number of likes to show in popup modal
|
|
)
|