Noah Petherbridge
748adeb289
* Add the Contact page where users can contact the site admins for feedback or to report a problematic user, photo or message. * Reports go into the admin Feedback table. * Admin nav bar indicates number of unread feedbacks. * Add "Report" button to profile pages, photo cards, and the top of Direct Message threads. Misc changes: * Send emails out asynchronously for more responsive page loads.
15 lines
388 B
Go
15 lines
388 B
Go
package config
|
|
|
|
// Pagination sizes per page.
|
|
var (
|
|
PageSizeMemberSearch = 60
|
|
PageSizeFriends = 12
|
|
PageSizeBlockList = 12
|
|
PageSizeAdminCertification = 20
|
|
PageSizeAdminFeedback = 20
|
|
PageSizeSiteGallery = 18
|
|
PageSizeUserGallery = 18
|
|
PageSizeInboxList = 20 // sidebar list
|
|
PageSizeInboxThread = 20 // conversation view
|
|
)
|