Redmine-Jobs/lib/time_entry_patch.rb

12 lines
163 B
Ruby
Raw Normal View History

2023-11-22 19:44:13 +00:00
# frozen_string_literal: true
require_dependency 'time_entry'
module TimeEntryPatch
extend ActiveSupport::Concern
included do
belongs_to :job
end
end