scinote-web/app/notifications/recipients/assigned_group_recipients.rb
2023-10-17 14:59:50 +02:00

13 lines
344 B
Ruby

# frozen_string_literal: true
class Recipients::AssignedGroupRecipients
def initialize(params)
@params = params
end
def recipients
activity = Activity.find(@params[:activity_id])
project = activity.subject
project.team.users.where.not(id: project.user_assignments.where(assigned: 'manually').select(:user_id))
end
end