Sha256: 83fc83b1c90365447fba7e740968b9063b382a43f40af13fc274fff47989d3d0

Contents?: true

Size: 337 Bytes

Versions: 9

Compression:

Stored size: 337 Bytes

Contents

module Georgia
  class UiSection < ActiveRecord::Base
    attr_accessible :name

    has_many :ui_associations, dependent: :destroy
    has_many :widgets, through: :ui_associations
    has_many :revisions, through: :ui_associations
    has_many :pages, through: :revisions

    validates :name, presence: true, uniqueness: true
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
georgia-0.7.8 app/models/georgia/ui_section.rb
georgia-0.7.7 app/models/georgia/ui_section.rb
georgia-0.7.6 app/models/georgia/ui_section.rb
georgia-0.7.5 app/models/georgia/ui_section.rb
georgia-0.7.4 app/models/georgia/ui_section.rb
georgia-0.7.3 app/models/georgia/ui_section.rb
georgia-0.7.2 app/models/georgia/ui_section.rb
georgia-0.7.1 app/models/georgia/ui_section.rb
georgia-0.7.0 app/models/georgia/ui_section.rb