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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-29 20:19:26 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-29 20:19:26 +0400
commitd45a6b2941f30d71f828e0fc8adaeab19f87b1a0 (patch)
treed774fc68fdafdce0936924418be2e10743f2af74 /app/finders
parent6fb9badcaef5152c60bf4091899a84b34f5cc1b8 (diff)
Migrate issue/mr labels from act_as_taggable to own labels
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/finders')
-rw-r--r--app/finders/base_finder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/finders/base_finder.rb b/app/finders/base_finder.rb
index 7150bb2e31b..4be74a1ff8c 100644
--- a/app/finders/base_finder.rb
+++ b/app/finders/base_finder.rb
@@ -125,7 +125,7 @@ class BaseFinder
def by_label(items)
if params[:label_name].present?
- items = items.tagged_with(params[:label_name])
+ items = items.joins(:labels).where("labels.title = ?", params[:label_name])
end
items