Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2018-06-29 13:51:48 +0300
committerLin Jen-Shin <godfat@godfat.org>2018-07-05 12:27:30 +0300
commit6b43e8e6367062c7c26c8aa2de4a435dd533b09b (patch)
tree0b31b65b69cb8200a7cb93d71911316bb967622a /app/models/board.rb
parentd04ae01a6a53f4296079fa7e15e191d11b539afa (diff)
Unify app/views/shared/issuable/_search_bar.html.haml
This brings some EE changes which don't hurt
Diffstat (limited to 'app/models/board.rb')
-rw-r--r--app/models/board.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/board.rb b/app/models/board.rb
index 3cede6fc99a..bb6bb753daf 100644
--- a/app/models/board.rb
+++ b/app/models/board.rb
@@ -26,4 +26,8 @@ class Board < ActiveRecord::Base
def closed_list
lists.merge(List.closed).take
end
+
+ def scoped?
+ false
+ end
end