diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-03-11 19:01:40 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-03-11 19:01:40 -0500 |
commit | cfd3000d833d3a99df0b4248e3b6160e9be4f22a (patch) | |
tree | 2a4ccff357a394670a49fd4447f3ebaee637b667 /app/Controller/DashboardController.php | |
parent | bb9e7916574bd7e21550bf7505757fccae6cbdd0 (diff) |
Move notifications outside of dashboard
Diffstat (limited to 'app/Controller/DashboardController.php')
-rw-r--r-- | app/Controller/DashboardController.php | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/app/Controller/DashboardController.php b/app/Controller/DashboardController.php index f32f8552..cdd256d8 100644 --- a/app/Controller/DashboardController.php +++ b/app/Controller/DashboardController.php @@ -106,20 +106,4 @@ class DashboardController extends BaseController 'user' => $user, ))); } - - /** - * My notifications - * - * @access public - */ - public function notifications() - { - $user = $this->getUser(); - - $this->response->html($this->helper->layout->dashboard('dashboard/notifications', array( - 'title' => t('Notifications for %s', $this->helper->user->getFullname($user)), - 'notifications' => $this->userUnreadNotificationModel->getAll($user['id']), - 'user' => $user, - ))); - } } |