Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-03-14 21:18:45 +0300
committerJoas Schilling <coding@schilljs.com>2019-04-01 17:00:13 +0300
commit79246e1d59c8695a3951b989ff3eacad0493ac78 (patch)
treecb00f56c609878c405d76367e7669c1243143053 /lib/AppInfo
parent1eea0212e7a550ffda2bdf19cc53862fc507a77c (diff)
Start changelog implementation
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/AppInfo')
-rw-r--r--lib/AppInfo/Application.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php
index 5a4c192ce..1e3663578 100644
--- a/lib/AppInfo/Application.php
+++ b/lib/AppInfo/Application.php
@@ -24,6 +24,7 @@ namespace OCA\Spreed\AppInfo;
use OCA\Spreed\Activity\Listener as ActivityListener;
use OCA\Spreed\Capabilities;
+use OCA\Spreed\Chat\Changelog\Listener as ChangelogListener;
use OCA\Spreed\Chat\ChatManager;
use OCA\Spreed\Chat\Command\Listener as CommandListener;
use OCA\Spreed\Chat\Parser\Listener as ParserListener;
@@ -113,6 +114,7 @@ class Application extends App {
SignalingListener::register($dispatcher);
CommandListener::register($dispatcher);
ResourceListener::register($dispatcher);
+ ChangelogListener::register($dispatcher);
$this->registerNavigationLink($server);
$this->registerRoomActivityHooks($dispatcher);