Files
mozo-backend/app/models/concerns/svg_element_defaults.rb
2015-03-01 12:57:20 +01:00

12 lines
319 B
Ruby

module SvgElementDefaults
extend ActiveSupport::Concern
included do
property :svg
property :name
property :dpm, type: Float, default: 300
property :box_width, type: Float, default: 300
property :box_height, type: Float, default: 300
validates :dpm, numericality: {greater_than: 0}
end
end