af83/chouette-core

View on GitHub
app/models/chouette/connection_link_type.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Chouette
  class ConnectionLinkType < TextAndNumericalType
    DEFINITIONS = [
      ["underground", 0],
      ["mixed", 1],
      ["overground", 2],
    ].freeze
  end
end