2018-07-30 11:45:49 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Autocomplete
|
|
|
|
# Finder that retrieves a list of projects that an issue can be moved to.
|
|
|
|
class MoveToProjectFinder
|
2019-07-22 07:44:20 -04:00
|
|
|
attr_reader :current_user, :search, :project_id
|
|
|
|
|
|
|
|
LIMIT = 20
|
2018-07-30 11:45:49 -04:00
|
|
|
|
|
|
|
# current_user - The User object of the user that wants to view the list of
|
|
|
|
# projects.
|
|
|
|
#
|
|
|
|
# params - A Hash containing additional parameters to set.
|
|
|
|
#
|
|
|
|
# The following parameters can be set (as Symbols):
|
|
|
|
#
|
|
|
|
# * search: An optional search query to apply to the list of projects.
|
|
|
|
# * project_id: The ID of a project to exclude from the returned relation.
|
|
|
|
def initialize(current_user, params = {})
|
|
|
|
@current_user = current_user
|
|
|
|
@search = params[:search]
|
|
|
|
@project_id = params[:project_id]
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
|
|
|
current_user
|
|
|
|
.projects_where_can_admin_issues
|
|
|
|
.optionally_search(search)
|
|
|
|
.excluding_project(project_id)
|
|
|
|
.eager_load_namespace_and_owner
|
2019-07-22 07:44:20 -04:00
|
|
|
.sorted_by_name_asc_limited(LIMIT)
|
2018-07-30 11:45:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|