From e59a9fbef7b5ea97822f04d5f6aafcfb3f5f7796 Mon Sep 17 00:00:00 2001 From: nupplaPhil Date: Thu, 23 Jan 2020 00:31:22 +0100 Subject: [PATCH] Add explicit contact route --- static/routes.config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/static/routes.config.php b/static/routes.config.php index aa04d6e6f7..44502cdfb2 100644 --- a/static/routes.config.php +++ b/static/routes.config.php @@ -174,6 +174,7 @@ return [ '/home[/json]' => [Module\Notifications\Notifications::class, [R::GET, R::POST]], '/intros[/json]' => [Module\Notifications\Introductions::class, [R::GET, R::POST]], '/intros/all[/json]' => [Module\Notifications\Introductions::class, [R::GET, R::POST]], + '/intros/{contact:\d+}[/json]' => [Module\Notifications\Introductions::class, [R::GET, R::POST]], ], '/notify' => [ -- 2.39.5