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

autocomplete_service.rb « projects « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e943d2ffbcb0fbbc1c9d1534afe8f9ee9b01d343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module Projects
  class AutocompleteService < BaseService
    def issues
      @project.issues.visible_to_user(current_user).opened.select([:iid, :title])
    end

    def milestones
      @project.milestones.active.reorder(due_date: :asc, title: :asc).select([:iid, :title])
    end

    def merge_requests
      @project.merge_requests.opened.select([:iid, :title])
    end

    def labels
      @project.labels.select([:title, :color])
    end

    def commands
      SlashCommands::InterpretService.command_definitions
    end
  end
end