11 lines
196 B
Ruby
11 lines
196 B
Ruby
class LangPage < ActiveRecord::Base
|
|
belongs_to :lang_site
|
|
belongs_to :page
|
|
|
|
#attr_accessor :force_validation
|
|
validates :title, :presence => true #, :if => :force_validation
|
|
|
|
|
|
|
|
end
|