Noah
de9ba94dd9
* Add ability to unlock your private photos for others. * Link to unlock is on another user's Photos page. * You can also access your "Manage Private Photos" page in the User Menu or Dashboard and add a user by username. * See who you have granted access, and see users who have granted you access to their private photos. * Private photos of users who unlocked them for you may appear on the Site Gallery if the photo allows. * Add new filters to the Site Gallery: you can choose to filter by Explicit, limit to a specific Visibility, and order by Newest or Oldest. Non-explicit users do not get a filter to see explicit content - they must opt-in in their settings. * Bugfix: Site Gallery was not correctly filtering Explicit photos away from users who did not opt-in for explicit!
27 lines
947 B
Go
27 lines
947 B
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
|
|
PageSizeSiteGallery = 16
|
|
PageSizeUserGallery = 16
|
|
PageSizeInboxList = 20 // sidebar list
|
|
PageSizeInboxThread = 20 // conversation view
|
|
PageSizeForums = 100 // TODO: for main category index view
|
|
PageSizeThreadList = 20 // 20 threads per board, 20 posts per thread
|
|
PageSizeForumAdmin = 20
|
|
PageSizeDashboardNotifications = 50
|
|
)
|