summaryrefslogtreecommitdiff
path: root/app/models/concerns/state_eventable.rb
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