aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/gtfs_import.rb
blob: c2457548fc15a1ab1568902c03543421864f51f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class GtfsImport < ImportTask

  validates_presence_of :object_id_prefix
  option :object_id_prefix
  option :max_distance_for_commercial
  option :ignore_last_word
  option :ignore_end_chars
  option :max_distance_for_connection_link

  def references_types
    [ Chouette::StopArea ]
  end

end