Files
redmine_overhead/lib/overhead_time_entry_patch.rb
2010-07-07 12:42:21 -07:00

10 lines
159 B
Ruby

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