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

label_eventable.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d22d93448e4981661c47d509d47b956ca1bf889f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

# == LabelEventable concern
#
# Contains functionality related to objects that support adding/removing labels.
#
# This concern is not used yet, it will be used for:
# https://gitlab.com/gitlab-org/gitlab-ce/issues/48483

module LabelEventable
  extend ActiveSupport::Concern

  included do
    has_many :resource_label_events
  end
end