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

create_service.rb « issues « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5c17906a553f6fea262f1e83792b1dff2911dc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Issues
  class CreateService < Issues::BaseService
    def execute
      label_params = params[:label_ids]
      issue = project.issues.new(params.except(:label_ids))
      issue.author = current_user

      if issue.save
        issue.update_attributes(label_ids: label_params)
        notification_service.new_issue(issue, current_user)
        event_service.open_issue(issue, current_user)
        issue.create_cross_references!(issue.project, current_user)
        execute_hooks(issue, 'open')
      end

      issue
    end
  end
end