linguisticexplorer/Linguistic-Explorer

View on GitHub
app/helpers/groups_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module GroupsHelper

  def groups_options
    Group.all.map { |g| [g.name, g.id] }
  end
end