summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/api/README.md7
-rw-r--r--lib/api/helpers.rb4
-rw-r--r--lib/api/issues.rb4
-rw-r--r--lib/api/milestones.rb2
-rw-r--r--lib/api/projects.rb2
-rw-r--r--lib/api/users.rb2
6 files changed, 16 insertions, 5 deletions
diff --git a/doc/api/README.md b/doc/api/README.md
index 53b4983ef47..3a6c7b7682a 100644
--- a/doc/api/README.md
+++ b/doc/api/README.md
@@ -23,6 +23,13 @@ GET http://example.com/api/v2/projects?private_token=QVy1PB7sTxfy4pqfZM1U
The API uses JSON to serialize data. You don't need to specify `.json` at the end of API URL.
+#### Pagination
+
+When listing resources you can pass the following parameters:
+
++ `page` (default: `1`) - page number
++ `per_page` (default: `20`, max: `100`) - how many items to list per page
+
## Contents
+ [Users](https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/users.md)
diff --git a/lib/api/helpers.rb b/lib/api/helpers.rb
index c1ea05667ae..ce7b7b497fc 100644
--- a/lib/api/helpers.rb
+++ b/lib/api/helpers.rb
@@ -14,6 +14,10 @@ module Gitlab
@project
end
+ def paginate(object)
+ object.page(params[:page]).per(params[:per_page].to_i)
+ end
+
def authenticate!
error!({'message' => '401 Unauthorized'}, 401) unless current_user
end
diff --git a/lib/api/issues.rb b/lib/api/issues.rb
index 836c2818544..68cb7e059b9 100644
--- a/lib/api/issues.rb
+++ b/lib/api/issues.rb
@@ -9,7 +9,7 @@ module Gitlab
# Example Request:
# GET /issues
get do
- present current_user.issues, with: Entities::Issue
+ present paginate(current_user.issues), with: Entities::Issue
end
end
@@ -21,7 +21,7 @@ module Gitlab
# Example Request:
# GET /projects/:id/issues
get ":id/issues" do
- present user_project.issues, with: Entities::Issue
+ present paginate(user_project.issues), with: Entities::Issue
end
# Get a single project issue
diff --git a/lib/api/milestones.rb b/lib/api/milestones.rb
index f537b8e5bf2..29f5efa41d6 100644
--- a/lib/api/milestones.rb
+++ b/lib/api/milestones.rb
@@ -11,7 +11,7 @@ module Gitlab
# Example Request:
# GET /projects/:id/milestones
get ":id/milestones" do
- present user_project.milestones, with: Entities::Milestone
+ present paginate(user_project.milestones), with: Entities::Milestone
end
# Get a single project milestone
diff --git a/lib/api/projects.rb b/lib/api/projects.rb
index f42849cd2f2..3d4fde9270f 100644
--- a/lib/api/projects.rb
+++ b/lib/api/projects.rb
@@ -9,7 +9,7 @@ module Gitlab
# Example Request:
# GET /projects
get do
- @projects = current_user.projects
+ @projects = paginate current_user.projects
present @projects, with: Entities::Project
end
diff --git a/lib/api/users.rb b/lib/api/users.rb
index 81cb2a0e684..98ced6f8e5b 100644
--- a/lib/api/users.rb
+++ b/lib/api/users.rb
@@ -9,7 +9,7 @@ module Gitlab
# Example Request:
# GET /users
get do
- @users = User.all
+ @users = paginate User
present @users, with: Entities::User
end