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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/AppInfo')
-rw-r--r--lib/AppInfo/Application.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php
index c8f92e78..e16738bc 100644
--- a/lib/AppInfo/Application.php
+++ b/lib/AppInfo/Application.php
@@ -25,11 +25,18 @@ namespace OCA\Polls\AppInfo;
use OCA\Polls\Controller\PageController;
use OCA\Polls\Controller\ApiController;
+use OCA\Polls\Controller\CommentsController;
+use OCA\Polls\Controller\EventController;
+use OCA\Polls\Controller\NotificationController;
+use OCA\Polls\Controller\OptionController;
+use OCA\Polls\Controller\VotesController;
+use OCA\Polls\Controller\ShareController;
use OCA\Polls\Db\CommentMapper;
use OCA\Polls\Db\OptionMapper;
use OCA\Polls\Db\EventMapper;
use OCA\Polls\Db\NotificationMapper;
use OCA\Polls\Db\VoteMapper;
+use OCA\Polls\Db\ShareMapper;
use OCP\AppFramework\App;
use OCP\IContainer;