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

project_group_link_create_worker.rb « authorized_project_update « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fb59efaacbb573587f9f1c9529e9d1a6b90e308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module AuthorizedProjectUpdate
  class ProjectGroupLinkCreateWorker
    include ApplicationWorker

    feature_category :authentication_and_authorization
    urgency :low
    queue_namespace :authorized_project_update

    idempotent!

    def perform(project_id, group_id)
      project = Project.find(project_id)
      group = Group.find(group_id)

      AuthorizedProjectUpdate::ProjectGroupLinkCreateService.new(project, group)
                                                            .execute
    end
  end
end