mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 13:16:28 +08:00
9 lines
180 B
Ruby
9 lines
180 B
Ruby
module SearchHelper
|
|
def experiments_results(tag)
|
|
experiments = []
|
|
tag.my_modules.each do |mod|
|
|
experiments << mod.experiment
|
|
end
|
|
experiments.uniq
|
|
end
|
|
end
|