summaryrefslogtreecommitdiff
path: root/app/models
diff options
context:
space:
mode:
authorChantal Rollison <crollison@gitlab.com>2018-11-01 17:10:53 -0700
committerChantal Rollison <crollison@gitlab.com>2018-11-05 06:22:19 -0800
commitaf87e40a7814e97a5bb63fc354e1a7b6194a3052 (patch)
tree383ea0b820415ce747646d9ee6c059684c5f5afe /app/models
parent74b5dce44aa902364d7ff3a3d8f6a1fcd857993d (diff)
downloadgitlab-ce-af87e40a7814e97a5bb63fc354e1a7b6194a3052.tar.gz
Fixed label removal from issueccr/51052_keep_labels_on_issue
Diffstat (limited to 'app/models')
-rw-r--r--app/models/label.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/label.rb b/app/models/label.rb
index 43b49445765..165e4a8f3e5 100644
--- a/app/models/label.rb
+++ b/app/models/label.rb
@@ -41,8 +41,8 @@ class Label < ActiveRecord::Base
scope :templates, -> { where(template: true) }
scope :with_title, ->(title) { where(title: title) }
scope :with_lists_and_board, -> { joins(lists: :board).merge(List.movable) }
- scope :on_group_boards, ->(group_id) { with_lists_and_board.where(boards: { group_id: group_id }) }
scope :on_project_boards, ->(project_id) { with_lists_and_board.where(boards: { project_id: project_id }) }
+ scope :on_board, ->(board_id) { with_lists_and_board.where(boards: { id: board_id }) }
scope :order_name_asc, -> { reorder(title: :asc) }
scope :order_name_desc, -> { reorder(title: :desc) }
scope :subscribed_by, ->(user_id) { joins(:subscriptions).where(subscriptions: { user_id: user_id, subscribed: true }) }