Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/api
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2016-11-04 15:50:17 +0300
committerRobert Speicher <robert@gitlab.com>2016-11-04 15:50:17 +0300
commit588bc001e27080d2583781426e2336ffa09f70e5 (patch)
treebb3b96438da32d51a4358dcfea562da57123ad33 /lib/api
parent856ef3c303574f9c6554dddf34e6bae5cfa0d4dd (diff)
parente5c6f943fe6e33510813f05a6f7e6d56af47461a (diff)
Merge branch 'backport-ee-js-groups-api' into 'master'
Backport Group API code that was added in EE only Group API code that was added in EE only. /cc @vsizov See merge request !7205
Diffstat (limited to 'lib/api')
-rw-r--r--lib/api/groups.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/api/groups.rb b/lib/api/groups.rb
index bfb89475025..a13e353b7f5 100644
--- a/lib/api/groups.rb
+++ b/lib/api/groups.rb
@@ -8,11 +8,14 @@ module API
#
# Parameters:
# skip_groups (optional) - Array of group ids to exclude from list
+ # all_available (optional, boolean) - Show all group that you have access to
# Example Request:
# GET /groups
get do
@groups = if current_user.admin
Group.all
+ elsif params[:all_available]
+ GroupsFinder.new.execute(current_user)
else
current_user.groups
end