aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/course/forum/subscriptions.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/course/forum/subscriptions.php')
-rw-r--r--app/controllers/course/forum/subscriptions.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/controllers/course/forum/subscriptions.php b/app/controllers/course/forum/subscriptions.php
new file mode 100644
index 0000000..399c072
--- /dev/null
+++ b/app/controllers/course/forum/subscriptions.php
@@ -0,0 +1,19 @@
+<?php
+require_once 'ForumBaseController.php';
+
+class Course_Forum_SubscriptionsController extends Forum\ForumBaseController
+{
+ public function before_filter(&$action, &$args)
+ {
+ parent::before_filter($action, $args);
+
+ Navigation::activateItem('course/forum/subscriptions');
+ }
+
+ public function index_action()
+ {
+ $this->render_vue_app(
+ Studip\VueApp::create('forum/subscriptions/Index')
+ );
+ }
+}