|  | @@ -26,11 +26,12 @@ class LuticateGroupsController extends LuController {
 | 
		
	
		
			
			| 26 | 26 |       * Get all groups
 | 
		
	
		
			
			| 27 | 27 |       * @param int $page The page number, 0 based
 | 
		
	
		
			
			| 28 | 28 |       * @param int $perPage The number of items per page
 | 
		
	
		
			
			|  | 29 | +     * @param string $query The filter query
 | 
		
	
		
			
			| 29 | 30 |       * @return \Luticate\Utils\LuMultipleDbo
 | 
		
	
		
			
			| 30 | 31 |       */
 | 
		
	
		
			
			| 31 |  | -    public function getAll($page = 0, $perPage = PHP_INT_MAX)
 | 
		
	
		
			
			|  | 32 | +    public function getAll($page = 0, $perPage = PHP_INT_MAX, $query = "")
 | 
		
	
		
			
			| 32 | 33 |      {
 | 
		
	
		
			
			| 33 |  | -        return LuticateGroupsBusiness::getAll($page, $perPage);
 | 
		
	
		
			
			|  | 34 | +        return LuticateGroupsBusiness::getAll($page, $perPage, $query);
 | 
		
	
		
			
			| 34 | 35 |      }
 | 
		
	
		
			
			| 35 | 36 |  
 | 
		
	
		
			
			| 36 | 37 |      /**
 |