Move ProjectActivitySubscriber to a new notification type

This commit is contained in:
Frederic Guillot
2015-10-17 12:53:11 -04:00
parent 472f94efee
commit 9153c6ff0d
7 changed files with 106 additions and 78 deletions

View File

@@ -138,7 +138,8 @@ class ClassProvider implements ServiceProviderInterface
$container['projectNotificationType'] = function ($container) {
$type = new ProjectNotificationType($container);
$type->setType('webhook', t('Webhook'), '\Kanboard\Notification\Webhook', true);
$type->setType('webhook', 'Webhook', '\Kanboard\Notification\Webhook', true);
$type->setType('activity_stream', 'ActivityStream', '\Kanboard\Notification\ActivityStream', true);
return $type;
};