From b513313c2fbfb0e5f15cab97ea74929b5c0d0a60 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Fri, 20 Jun 2014 21:59:59 -0300 Subject: Add a board selector instead of the list of projects --- app/Model/Project.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'app/Model') diff --git a/app/Model/Project.php b/app/Model/Project.php index b5716a81..51a23967 100644 --- a/app/Model/Project.php +++ b/app/Model/Project.php @@ -319,7 +319,7 @@ class Project extends Base * Get a list of project by status * * @access public - * @param integer $status Proejct status: self::ACTIVE or self:INACTIVE + * @param integer $status Project status: self::ACTIVE or self:INACTIVE * @return array */ public function getListByStatus($status) @@ -347,7 +347,7 @@ class Project extends Base } /** - * Return a list of projects for a given user + * Filter a list of projects for a given user * * @access public * @param array $projects Project list: ['project_id' => 'project_name'] @@ -365,6 +365,18 @@ class Project extends Base return $projects; } + /** + * Return a list of projects for a given user + * + * @access public + * @param integer $user_id User id + * @return array + */ + public function getAvailableList($user_id) + { + return $this->filterListByAccess($this->getListByStatus(self::ACTIVE), $user_id); + } + /** * Create a project * -- cgit v1.2.3