diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | lib/api/projects.rb | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -5,6 +5,7 @@ v7.14.0 (unreleased) - Randomize test database for CI tests - Make YAML validation stricter - Use avatars received from GitLab + - Fix project API listing returning empty list when first projects are not added to CI v7.13.1 - Fix: user could steal specific runner diff --git a/lib/api/projects.rb b/lib/api/projects.rb index 0311c56..58539d3 100644 --- a/lib/api/projects.rb +++ b/lib/api/projects.rb @@ -34,7 +34,7 @@ module API # GET /projects get do gitlab_projects = Project.from_gitlab( - current_user, :authorized, { page: params[:page], per_page: params[:per_page] } + current_user, :authorized, { page: params[:page], per_page: params[:per_page], ci_enabled_first: true } ) ids = gitlab_projects.map { |project| project.id } @@ -48,7 +48,7 @@ module API # GET /projects/owned get "owned" do gitlab_projects = Project.from_gitlab( - current_user, :owned, { page: params[:page], per_page: params[:per_page] } + current_user, :owned, { page: params[:page], per_page: params[:per_page], ci_enabled_first: true } ) ids = gitlab_projects.map { |project| project.id } |