Merge pull-request #1722

This commit is contained in:
Frederic Guillot
2016-01-26 19:36:57 -05:00
3 changed files with 61 additions and 0 deletions

View File

@@ -21,6 +21,11 @@ class User extends \Kanboard\Core\Base
return $this->user->getById($user_id);
}
public function getUserByName($username)
{
return $this->user->getByUsername($username);
}
public function getAllUsers()
{
return $this->user->getAll();