web/app/helpers/settings/benchmark_configurations_helper.rb
changeset 106 eac4098d544d
child 236 2565b32e93b3
equal deleted inserted replaced
105:8293977e9a30 106:eac4098d544d
       
     1 module Settings::BenchmarkConfigurationsHelper
       
     2   def all_configurations
       
     3     BenchmarkConfiguration.all
       
     4   end
       
     5 
       
     6   def all_configurations_options
       
     7     all_configurations.map { |c| [c.name, c.id] }
       
     8   end
       
     9 end