gitlab-org--gitlab-foss/app/models/concerns/label_eventable.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
370 B
Ruby
Raw Normal View History

2018-08-01 08:58:49 +00:00
# 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
2018-08-01 08:58:49 +00:00
module LabelEventable
extend ActiveSupport::Concern
included do
has_many :resource_label_events
end
end