summaryrefslogtreecommitdiff
path: root/app/models/issue.rb
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2017-02-01 12:41:01 -0600
committerPhil Hughes <me@iamphill.com>2017-02-17 11:29:16 +0000
commitac868482a7780a332045ef270a409ff70bcf8efd (patch)
tree99ff605262028f08718f04ac0c9e42c516d38693 /app/models/issue.rb
parent5d8f5328baca93b9134f10ae593e71834578a9f8 (diff)
downloadgitlab-ce-ac868482a7780a332045ef270a409ff70bcf8efd.tar.gz
Allow issues in boards to be ordered
Diffstat (limited to 'app/models/issue.rb')
-rw-r--r--app/models/issue.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/issue.rb b/app/models/issue.rb
index d8826b65fcc..f3c8f49cc66 100644
--- a/app/models/issue.rb
+++ b/app/models/issue.rb
@@ -7,6 +7,7 @@ class Issue < ActiveRecord::Base
include Sortable
include Spammable
include FasterCacheKeys
+ include RelativePositioning
DueDateStruct = Struct.new(:title, :name).freeze
NoDueDate = DueDateStruct.new('No Due Date', '0').freeze