Fixes ordering of checklist items in search results [SCI-380]

This commit is contained in:
Oleksii Kriuchykhin 2016-09-27 13:00:51 +02:00
parent 841e495234
commit 366a49f3a1

View file

@ -7,6 +7,7 @@ class Checklist < ActiveRecord::Base
belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User'
belongs_to :last_modified_by, foreign_key: 'last_modified_by_id', class_name: 'User'
has_many :checklist_items,
-> { order(:position) },
inverse_of: :checklist,
dependent: :destroy
has_many :report_elements,