From: Michael Date: Fri, 6 Aug 2021 04:01:26 +0000 (+0000) Subject: Fix update_network for forums X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ed0b300113b7cce780d3beaf102537469c6b5bba;p=friendica.git Fix update_network for forums --- diff --git a/static/routes.config.php b/static/routes.config.php index d42d5cfbbf..ac4ec53917 100644 --- a/static/routes.config.php +++ b/static/routes.config.php @@ -436,7 +436,14 @@ return [ '/tos' => [Module\Tos::class, [R::GET]], '/update_community[/{content}]' => [Module\Update\Community::class, [R::GET]], - '/update_network' => [Module\Update\Network::class, [R::GET]], + + '/update_network' => [ + '[/]' => [Module\Update\Network::class, [R::GET]], + '/archive/{from:\d\d\d\d-\d\d-\d\d}[/{to:\d\d\d\d-\d\d-\d\d}]' => [Module\Update\Network::class, [R::GET]], + '/forum/{contact_id:\d+}' => [Module\Update\Network::class, [R::GET]], + '/group/{group_id:\d+}' => [Module\Update\Network::class, [R::GET]], + ], + '/update_profile' => [Module\Update\Profile::class, [R::GET]], '/view/theme/{theme}/style.pcss' => [Module\Theme::class, [R::GET]],