2018-11-18 11:00:15 +05:30
|
|
|
# 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:
|
2019-12-04 20:38:33 +05:30
|
|
|
# https://gitlab.com/gitlab-org/gitlab-foss/issues/48483
|
2018-11-18 11:00:15 +05:30
|
|
|
|
|
|
|
module LabelEventable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
has_many :resource_label_events
|
|
|
|
end
|
|
|
|
end
|