aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/referential.rb
blob: 430785470db3bc0097d668a93dfad0e1eb4a7b47 (plain)
1
2
3
4
5
6
7
8
9
10
class Referential < ActiveRecord::Base
  validates_presence_of :name 
  validates_presence_of :slug

  def lines
    Chouette::Line.all
  end 

  
end