summaryrefslogtreecommitdiff
path: root/app/models/concerns/label_eventable.rb
blob: aad7259f2ad5b579e671bbdbfbfc2d528fe68d57 (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-foss/issues/48483

module LabelEventable
  extend ActiveSupport::Concern

  included do
    has_many :resource_label_events
  end
end