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'); + } }