From a0465c17970fb472ab7240a9b97967d0f9c31136 Mon Sep 17 00:00:00 2001 From: KamuiX <45120618+KamuiX@users.noreply.github.com> Date: Wed, 8 Dec 2021 15:31:10 +0200 Subject: [PATCH] Enable "Text Messages" menu in channels The above change enables the "Text Messages" menu in channels section of Mautic which is responsible to prepare template SMSs --- Config/config.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Config/config.php b/Config/config.php index bcd14c7..37a5123 100755 --- a/Config/config.php +++ b/Config/config.php @@ -52,4 +52,22 @@ ], ], ], + 'menu' => [ + 'main' => [ + 'items' => [ + 'mautic.sms.smses' => [ + 'route' => 'mautic_sms_index', + 'access' => ['sms:smses:viewown', 'sms:smses:viewother'], + 'parent' => 'mautic.core.channels', + 'checks' => [ + 'integration' => [ + 'MauticSmsGateway' => [ + 'enabled' => true, + ], + ], + ], + ], + ], + ], + ], ];