From: Philipp Holzer Date: Sun, 29 Sep 2019 09:58:25 +0000 (+0200) Subject: Add "/pending" route because of https://github.com/friendica/friendica/commit/591ba9c... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=aad75292f88d0dc74b1ffd37a75e57e77d7d83c4;p=friendica.git Add "/pending" route because of https://github.com/friendica/friendica/commit/591ba9c68e82491468f7e97c966b2e5e3c0eefd6 --- diff --git a/static/routes.config.php b/static/routes.config.php index 01d3d99ac6..91591a561a 100644 --- a/static/routes.config.php +++ b/static/routes.config.php @@ -86,6 +86,7 @@ return [ '/{id:\d+}/updateprofile' => [Module\Contact::class, [R::GET]], '/archived' => [Module\Contact::class, [R::GET]], '/batch' => [Module\Contact::class, [R::GET, R::POST]], + '/pending' => [Module\Contact::class, [R::GET]], '/blocked' => [Module\Contact::class, [R::GET]], '/hidden' => [Module\Contact::class, [R::GET]], '/ignored' => [Module\Contact::class, [R::GET]],