Merge pull request #8293 from MrPetovan/task/5562-community-pagination
Improve community pagination
This commit is contained in:
commit
da124af6ed
36 changed files with 710 additions and 499 deletions
|
@ -227,6 +227,15 @@ return [
|
|||
// If set true registration is only possible after a current member of the node has send an invitation.
|
||||
'invitation_only' => false,
|
||||
|
||||
// itemspage_network (Integer)
|
||||
// default number of items per page in stream pages (network, community, profile/contact statuses, search)
|
||||
'itemspage_network' => 40,
|
||||
|
||||
// itemspage_network_mobile (Integer)
|
||||
// default number of items per page in stream pages (network, community, profile/contact statuses, search)
|
||||
// on detected mobile devices
|
||||
'itemspage_network_mobile' => 20,
|
||||
|
||||
// like_no_comment (Boolean)
|
||||
// Don't update the "commented" value of an item when it is liked.
|
||||
'like_no_comment' => false,
|
||||
|
|
|
@ -102,6 +102,9 @@ return [
|
|||
'/attach/{item:\d+}' => [Module\Attach::class, [R::GET]],
|
||||
'/babel' => [Module\Debug\Babel::class, [R::GET, R::POST]],
|
||||
'/bookmarklet' => [Module\Bookmarklet::class, [R::GET]],
|
||||
|
||||
'/community[/{content}[/{accounttype}]]' => [Module\Conversation\Community::class, [R::GET]],
|
||||
|
||||
'/compose[/{type}]' => [Module\Item\Compose::class, [R::GET, R::POST]],
|
||||
|
||||
'/contact' => [
|
||||
|
@ -288,6 +291,7 @@ return [
|
|||
'/toggle_mobile' => [Module\ToggleMobile::class, [R::GET]],
|
||||
'/tos' => [Module\Tos::class, [R::GET]],
|
||||
|
||||
'/update_community[/{content}[/{accounttype}]]' => [Module\Update\Community::class, [R::GET]],
|
||||
'/update_profile' => [Module\Update\Profile::class, [R::GET]],
|
||||
|
||||
'/view/theme/{theme}/style.pcss' => [Module\Theme::class, [R::GET]],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue