Files
redmine_overhead/lib/overhead_time_entry_patch.rb

10 lines
159 B
Ruby

module OverheadTimeEntryPatch
def self.included(base)
base.class_eval do
unloadable
delegate :billable?, :to => :activity
end
end
end