Sha256: ff545e1a0eaccf1a1ec10e465cccb833347725aed1c978d97c35c618e2489541

Contents?: true

Size: 567 Bytes

Versions: 4

Compression:

Stored size: 567 Bytes

Contents

class Chouette::TimeTableDate < Chouette::ActiveRecord
  self.primary_key = "id"
  belongs_to :time_table, inverse_of: :dates
  acts_as_list :scope => 'time_table_id = #{time_table_id}',:top_of_list => 0
  
  validates_presence_of :date
  validates_uniqueness_of :date, :scope => :time_table_id

  attr_accessible :date, :position, :time_table_id, :time_table
  
  after_update :update_parent
  
  def self.model_name
    ActiveModel::Name.new Chouette::TimeTableDate, Chouette, "TimeTableDate"
  end
  
  def update_parent
    time_table.shortcuts_update
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ninoxe-1.0.3 app/models/chouette/time_table_date.rb
ninoxe-1.0.2 app/models/chouette/time_table_date.rb
ninoxe-1.0.1 app/models/chouette/time_table_date.rb
ninoxe-1.0.0 app/models/chouette/time_table_date.rb