2013-05-14 09:18:05 +00:00
|
|
|
class DesktopApp
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
|
|
|
|
field :name
|
|
|
|
field :author
|
|
|
|
field :shape
|
|
|
|
field :version, :type => String
|
2013-05-20 09:54:39 +00:00
|
|
|
field :text_color, :type => String, default: ""
|
|
|
|
field :bg_color, :type => String, default: ""
|
2013-05-14 09:18:05 +00:00
|
|
|
field :icon, default: "icon.png"
|
|
|
|
field :url
|
|
|
|
|
|
|
|
has_many :images, as: :imgs, :autosave => true, :dependent => :destroy
|
|
|
|
has_and_belongs_to_many :desktops, :autosave => true
|
|
|
|
has_many :tiles, :autosave => true
|
|
|
|
|
|
|
|
accepts_nested_attributes_for :images, :allow_destroy => true
|
|
|
|
|
|
|
|
end
|