summaryrefslogtreecommitdiff
path: root/app/workers/authorized_project_update/project_group_link_create_worker.rb
blob: dd24a9602bb708a4bf4ce3d836f8e16d7e53069b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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, group_access = nil)
      project = Project.find(project_id)
      group = Group.find(group_id)

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