diff options
Diffstat (limited to 'app/Controller/Project.php')
-rw-r--r-- | app/Controller/Project.php | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/app/Controller/Project.php b/app/Controller/Project.php index ba039b7d..faebac38 100644 --- a/app/Controller/Project.php +++ b/app/Controller/Project.php @@ -395,27 +395,6 @@ class Project extends Base } /** - * RSS feed for a project (public) - * - * @access public - */ - public function feed() - { - $token = $this->request->getStringParam('token'); - $project = $this->project->getByToken($token); - - // Token verification - if (empty($project)) { - $this->forbidden(true); - } - - $this->response->xml($this->template->render('project/feed', array( - 'events' => $this->projectActivity->getProject($project['id']), - 'project' => $project, - ))); - } - - /** * Display a form to create a new project * * @access public |