mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 06:06:56 +08:00
13 lines
286 B
Ruby
13 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
|