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

state_eventable.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68129798543cd617438590a47e65d654c5190aaf (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module StateEventable
  extend ActiveSupport::Concern

  included do
    has_many :resource_state_events
  end
end