mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-02 21:51:51 +08:00
28 lines
752 B
Ruby
28 lines
752 B
Ruby
# frozen_string_literal: true
|
|
|
|
module UserAssignments
|
|
class ProtocolGroupAssignmentJob < ApplicationJob
|
|
queue_as :high_priority
|
|
|
|
def perform(team, protocol, assigned_by)
|
|
@team = team
|
|
@assigned_by = assigned_by
|
|
|
|
ActiveRecord::Base.transaction do
|
|
team.users.where.not(id: assigned_by).find_each do |user|
|
|
user_assignment = UserAssignment.find_or_initialize_by(
|
|
user: user,
|
|
assignable: protocol
|
|
)
|
|
|
|
next if user_assignment.manually_assigned?
|
|
|
|
user_assignment.update!(
|
|
user_role: protocol.default_public_user_role || UserRole.find_predefined_viewer_role,
|
|
assigned_by: @assigned_by
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|