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:
authorRobert Speicher <robert@gitlab.com>2018-07-05 22:15:27 +0300
committerRobert Speicher <robert@gitlab.com>2018-07-05 22:15:27 +0300
commitdc6c89ccab29603c12d254ee8be5009ce8f94729 (patch)
treea2238577cfabd7c3f75180757aae1a358195b8ab /app/models
parent48d1f3d6195eb620c74efb2fd4057b419961cb10 (diff)
parent471c2ee9bcc095cff21ff15c3cffa8eae5548522 (diff)
Merge branch 'ce-6145-unify-issuable-search-bar' into 'master'
CE: Unify app/views/shared/issuable/_search_bar.html.haml See merge request gitlab-org/gitlab-ce!20266
Diffstat (limited to 'app/models')
-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