mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 13:16:28 +08:00
12 lines
286 B
Ruby
12 lines
286 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Recipients::RepositoryItemRecipients
|
|
def initialize(params)
|
|
@repository_row_id = params[:repository_row_id]
|
|
end
|
|
|
|
def recipients
|
|
repository_row = RepositoryRow.find(@repository_row_id)
|
|
repository_row.repository.team.users
|
|
end
|
|
end
|