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
|