mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
14 lines
344 B
Ruby
14 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
|