af83/chouette-core

View on GitHub
app/helpers/line_notices_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module LineNoticesHelper

  def lines_to_string (lines)
    description = lines.map(&:name).to_sentence
    description = "#{lines.count} #{Chouette::Line.model_name.human(count: lines.count)}" if description.length > 100
    description
  end

end