diff options
| author | Luc Donnet | 2018-04-10 17:30:55 +0200 | 
|---|---|---|
| committer | GitHub | 2018-04-10 17:30:55 +0200 | 
| commit | 537a5078657ead0b89aa5220c05dfbc01ae94dca (patch) | |
| tree | 54072303cdbab71e6005e7fc5c2af6db6a4f9d0b /app/models/referential.rb | |
| parent | dad504f5794a36be8dac97a257cdecd87704763b (diff) | |
| parent | 22e7844c1d2392e2a651a33bf83c32664a879619 (diff) | |
| download | chouette-core-537a5078657ead0b89aa5220c05dfbc01ae94dca.tar.bz2 | |
Merge pull request #438 from af83/6368-gtfs-import
GTFS import (first step)
Diffstat (limited to 'app/models/referential.rb')
| -rw-r--r-- | app/models/referential.rb | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/app/models/referential.rb b/app/models/referential.rb index 3304108d0..1794126a2 100644 --- a/app/models/referential.rb +++ b/app/models/referential.rb @@ -168,6 +168,10 @@ class Referential < ApplicationModel      Chouette::TimeTable.all    end +  def time_table_dates +    Chouette::TimeTableDate.all +  end +    def timebands      Chouette::Timeband.all    end @@ -184,6 +188,10 @@ class Referential < ApplicationModel      Chouette::VehicleJourneyFrequency.all    end +  def vehicle_journey_at_stops +    Chouette::VehicleJourneyAtStop.all +  end +    def routing_constraint_zones      Chouette::RoutingConstraintZone.all    end | 
