Finish base API.
Making PR, any additional API functions or modifications can be done within the repository now.
This commit is contained in:
parent
77e3744b40
commit
ac65d5fa21
8 changed files with 249 additions and 6 deletions
|
@ -36,7 +36,7 @@ class UserController extends BaseController
|
|||
*/
|
||||
public function getUsers(Request $request)
|
||||
{
|
||||
$users = Models\User::paginate(15);
|
||||
$users = Models\User::paginate(50);
|
||||
return $this->response->paginator($users, new UserTransformer);
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue