diff options
author | Robert Speicher <robert@gitlab.com> | 2018-07-23 19:30:29 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2018-07-23 19:30:29 +0000 |
commit | 34c57e09b9f7e774a9c142d6b6daf451fdbf4c87 (patch) | |
tree | 83a414aee1e721370ce6579bd6c0c530f372cb87 /lib/api/helpers.rb | |
parent | 9c121352aa59098be357d82538a4878540a676c9 (diff) | |
parent | e195e939a3a9836fc4da86b5f7762c12808d64a7 (diff) | |
download | gitlab-ce-34c57e09b9f7e774a9c142d6b6daf451fdbf4c87.tar.gz |
Merge branch 'api-minimal-access-level' into 'master'
Add filter for minimal access level in groups and projects API
Closes #48165
See merge request gitlab-org/gitlab-ce!20478
Diffstat (limited to 'lib/api/helpers.rb')
-rw-r--r-- | lib/api/helpers.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/api/helpers.rb b/lib/api/helpers.rb index f7737468148..be17653dbb2 100644 --- a/lib/api/helpers.rb +++ b/lib/api/helpers.rb @@ -389,6 +389,7 @@ module API finder_params[:search] = params[:search] if params[:search] finder_params[:user] = params.delete(:user) if params[:user] finder_params[:custom_attributes] = params[:custom_attributes] if params[:custom_attributes] + finder_params[:min_access_level] = params[:min_access_level] if params[:min_access_level] finder_params end |