21 lines
423 B
Ruby
21 lines
423 B
Ruby
class EditableElement
|
|
|
|
include Mongoid::Document
|
|
|
|
## fields ##
|
|
field :slug
|
|
field :block
|
|
field :default_content
|
|
field :hint
|
|
field :disabled, :type => Boolean, :default => false
|
|
field :from_parent, :type => Boolean, :default => false
|
|
|
|
## associations ##
|
|
embedded_in :page, :inverse_of => :editable_elements
|
|
|
|
## validations ##
|
|
validates_presence_of :slug
|
|
|
|
## methods ##
|
|
|
|
end |