app/models/wco/report.rb in wco_models-3.1.0.85 vs app/models/wco/report.rb in wco_models-3.1.0.86

- old
+ new

@@ -1,11 +1,9 @@ ## +## @report.body.split("\n\n").map { |ttt| "<p>#{ttt}</p>" }.join ## -## -# @report.body.split("\n\n").map { |ttt| "<p>#{ttt}</p>" }.join -# class Wco::Report include Mongoid::Document include Mongoid::Timestamps include Mongoid::Paranoia include Wco::Utils @@ -19,21 +17,12 @@ field :subtitle field :slug validates :slug, presence: true, uniqueness: true index({ :slug => 1 }, { :unique => true }) - before_validation :set_slug, :on => :create + before_validation :set_slug, on: :create field :body - - # field :raw_json, type: :object, default: '{}' - - # field :is_trash, :type => Boolean, :default => false - # index({ :is_trash => 1, :is_public => 1 }) - - # field :is_public, :type => Boolean, :default => true - # index({ :is_public => 1 }) - # scope :public, ->{ where({ is_public: true }) } field :x, :type => Float field :y, :type => Float field :z, :type => Float