/**
  * The private portal view
  */
 public function viewAction()
 {
     $user = $this->authenticate();
     $visibleFeeds = $this->portal->getSubscriptionsScheme($user['id']);
     $this->view->feeds = $visibleFeeds;
     $this->view->user = $user;
 }