mirror of
https://gh.wpcy.net/https://github.com/rilustrisimo/freescout-support.git
synced 2026-04-27 14:12:23 +08:00
31 lines
992 B
PHP
31 lines
992 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|-------------------
|
|
| Default Notification Subscriptions
|
|
|----------------------
|
|
|
|
|
| This file is for configuring the default notification subscriptions for new users.
|
|
|
|
|
*/
|
|
|
|
'defaults' => [
|
|
\App\Subscription::MEDIUM_EMAIL => [
|
|
\App\Subscription::EVENT_CONVERSATION_ASSIGNED_TO_ME,
|
|
\App\Subscription::EVENT_FOLLOWED_CONVERSATION_UPDATED,
|
|
//\App\Subscription::EVENT_MY_TEAM_MENTIONED,
|
|
\App\Subscription::EVENT_CUSTOMER_REPLIED_TO_MY,
|
|
\App\Subscription::EVENT_USER_REPLIED_TO_MY,
|
|
],
|
|
\App\Subscription::MEDIUM_BROWSER => [
|
|
\App\Subscription::EVENT_CONVERSATION_ASSIGNED_TO_ME,
|
|
\App\Subscription::EVENT_FOLLOWED_CONVERSATION_UPDATED,
|
|
//\App\Subscription::EVENT_MY_TEAM_MENTIONED,
|
|
\App\Subscription::EVENT_CUSTOMER_REPLIED_TO_MY,
|
|
\App\Subscription::EVENT_USER_REPLIED_TO_MY,
|
|
],
|
|
],
|
|
|
|
];
|