From 288192a7eff2d4b5fd2e881a0f71f066856cfb02 Mon Sep 17 00:00:00 2001 From: nupplaPhil Date: Tue, 28 Jan 2020 22:34:33 +0100 Subject: [PATCH] Hotfix: add missing route for ignore/discard --- static/routes.config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/static/routes.config.php b/static/routes.config.php index c081dba66..4752ca917 100644 --- a/static/routes.config.php +++ b/static/routes.config.php @@ -174,6 +174,7 @@ return [ ], '/notifications' => [ + '/{id}' => [Module\Notifications\Notifications::class, [ R::POST]], '/network[/json]' => [Module\Notifications\Notifications::class, [R::GET, R::POST]], '/system[/json]' => [Module\Notifications\Notifications::class, [R::GET, R::POST]], '/personal[/json]' => [Module\Notifications\Notifications::class, [R::GET, R::POST]],