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:
Diffstat (limited to 'app/models/label.rb')
-rw-r--r--app/models/label.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/app/models/label.rb b/app/models/label.rb
index d0d278b68fd..8fff42abd58 100644
--- a/app/models/label.rb
+++ b/app/models/label.rb
@@ -46,7 +46,6 @@ class Label < ApplicationRecord
scope :with_lists_and_board, -> { joins(lists: :board).merge(List.movable) }
scope :with_lock_on_merge, -> { where(lock_on_merge: true) }
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 }) }
@@ -152,10 +151,6 @@ class Label < ApplicationRecord
nil
end
- def self.ids_on_board(board_id)
- on_board(board_id).pluck(:label_id)
- end
-
# Searches for labels with a matching title or description.
#
# This method uses ILIKE on PostgreSQL.