Default value for length in as_json fixed

The default value for length in as_json should be a multiple of EventType::LENGTH_STEP.
This commit is contained in:
Ana 2016-07-18 11:45:59 +02:00
parent 8388385b51
commit a0fc9dd950
3 changed files with 3 additions and 3 deletions

View file

@ -116,7 +116,7 @@ class Event < ActiveRecord::Base
json[:room_guid] = room.try(:guid)
json[:track_color] = track.try(:color) || '#FFFFFF'
json[:length] = event_type.try(:length) || 25
json[:length] = event_type.try(:length) || EventType::LENGTH_STEP
json
end