Commit 998410c2 authored by Mike Greiling's avatar Mike Greiling

fix conflicts in app/models/issue.rb

parent c1075a14
......@@ -58,11 +58,9 @@ class Issue < ActiveRecord::Base
scope :order_due_date_asc, -> { reorder('issues.due_date IS NULL, issues.due_date ASC') }
scope :order_due_date_desc, -> { reorder('issues.due_date IS NULL, issues.due_date DESC') }
<<<<<<< HEAD
scope :order_weight_desc, -> { reorder('weight IS NOT NULL, weight DESC') }
scope :order_weight_asc, -> { reorder('weight ASC') }
=======
>>>>>>> master-ce
scope :preload_associations, -> { preload(:labels, project: :namespace) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment