Commit 6385c722 authored by Alexis Reigel's avatar Alexis Reigel

move users method to public section

this is for EE to be able to call this (elastic search)
parent 55629a2e
...@@ -87,6 +87,12 @@ module Gitlab ...@@ -87,6 +87,12 @@ module Gitlab
1001 1001
end end
def users
return User.none unless Ability.allowed?(current_user, :read_users_list)
UsersFinder.new(current_user, search: query).execute
end
private private
def projects def projects
...@@ -137,12 +143,6 @@ module Gitlab ...@@ -137,12 +143,6 @@ module Gitlab
end end
# rubocop: enable CodeReuse/ActiveRecord # rubocop: enable CodeReuse/ActiveRecord
def users
return User.none unless Ability.allowed?(current_user, :read_users_list)
UsersFinder.new(current_user, search: query).execute
end
def default_scope def default_scope
'projects' 'projects'
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment