aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/chouette/company.rb
blob: a472020e1e1d10f372eea0f86c4a676e1b5f6c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Chouette::Company < Chouette::ActiveRecord
  include CompanyRestrictions
  include StifCodifligneAttributesSupport
  include LineReferentialSupport

  has_many :lines

  validates_format_of :registration_number, :with => %r{\A[0-9A-Za-z_-]+\Z}, :allow_nil => true, :allow_blank => true
  validates_presence_of :name
  validates_format_of :url, :with => %r{\Ahttps?:\/\/([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?\Z}, :allow_nil => true, :allow_blank => true

  def self.nullable_attributes
    [:organizational_unit, :operating_department_name, :code, :phone, :fax, :email, :url, :time_zone]
  end


end