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

bulk_update_service.rb « issues « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb07413ee9439e393b266049fc9aa2d3c9f1ec8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module Issues
  class BulkUpdateService < BaseService
    def execute
      issues_ids   = params.delete(:issues_ids).split(",")
      issue_params = params

      issue_params.delete(:state_event)   unless issue_params[:state_event].present?
      issue_params.delete(:milestone_id)  unless issue_params[:milestone_id].present?
      issue_params.delete(:assignee_id)   unless issue_params[:assignee_id].present?

      issues = Issue.where(id: issues_ids)
      issues.each do |issue|
        next unless can?(current_user, :modify_issue, issue)

        Issues::UpdateService.new(issue.project, current_user, issue_params).execute(issue)
      end

      {
        count:    issues.count,
        success:  !issues.count.zero?
      }
    end
  end
end