2014-07-10 17:38:04 +08:00
|
|
|
class FirstPage < ActiveRecord::Base
|
2014-07-16 15:32:27 +08:00
|
|
|
attr_accessible :description, :title, :web_title,:page_type,:sort_type
|
|
|
|
validates_presence_of :web_title, :title, :description,:page_type
|
2014-07-14 16:12:58 +08:00
|
|
|
validates_length_of :web_title,:title, maximum: 30
|
2014-07-25 16:05:33 +08:00
|
|
|
validates_inclusion_of :image_width,:in => 50..120, :message => l(:image_width_error_message)
|
|
|
|
validates_inclusion_of :image_height,:in => 50..80, :message => l(:image_height_error_message)
|
2014-07-25 10:01:02 +08:00
|
|
|
#validates_length_of :description, maximum: 100
|
2014-07-10 17:38:04 +08:00
|
|
|
end
|