orbit-basic/app/models/i18n_variable.rb

17 lines
308 B
Ruby
Raw Normal View History

class I18nVariable
include Mongoid::Document
2011-03-08 09:25:46 +00:00
include Mongoid::Timestamps
field :key
2011-01-28 06:44:08 +00:00
field :document_class, :type => String
field :parent_id, :type => BSON::ObjectId, :index => true
2011-12-23 10:34:21 +00:00
belongs_to :language_value, polymorphic: true
2011-06-01 02:24:14 +00:00
def method_missing(field)
self[field]
end
end