aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/course/forum/subscriptions.php
blob: 399c072f0116e4b9f4575f76b97fb5590863d8dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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')
        );
    }
}