1# frozen_string_literal: true
2
3module MilestoneEventable
4  extend ActiveSupport::Concern
5
6  included do
7    has_many :resource_milestone_events
8  end
9end
10