featured_action_page.rb 210 B

123456789
  1. class FeaturedActionPage < ActiveRecord::Base
  2. belongs_to :action_page
  3. validates_presence_of :action_page, :weight
  4. def initialize(attributes = {})
  5. super(attributes.reverse_merge(weight: 0))
  6. end
  7. end