From 342da64df7000dd1e532c1d4509febccd41c8a0d Mon Sep 17 00:00:00 2001 From: Sukhwinder Dhillon Date: Mon, 6 May 2024 16:15:49 +0200 Subject: [PATCH] WIP: (EventRules/ Schedule forms are still missing) --- library/Notifications/Common/Links.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/library/Notifications/Common/Links.php b/library/Notifications/Common/Links.php index f943eb75e..6c2de5002 100644 --- a/library/Notifications/Common/Links.php +++ b/library/Notifications/Common/Links.php @@ -70,4 +70,14 @@ public static function scheduleSettings(int $id): Url { return Url::fromPath('notifications/schedule/settings', ['id' => $id]); } + + public static function channels(): Url + { + return Url::fromPath('notifications/channels'); + } + + public static function channelAdd(): Url + { + return Url::fromPath('notifications/channel/add'); + } }