summaryrefslogtreecommitdiffstats
path: root/app/models/time_entry.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/time_entry.rb')
-rw-r--r--app/models/time_entry.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/models/time_entry.rb b/app/models/time_entry.rb
index ddaff2b60..4bd2d33b8 100644
--- a/app/models/time_entry.rb
+++ b/app/models/time_entry.rb
@@ -29,6 +29,12 @@ class TimeEntry < ActiveRecord::Base
validates_numericality_of :hours, :allow_nil => true
validates_length_of :comments, :maximum => 255
+ def after_initialize
+ if new_record?
+ self.activity ||= Enumeration.default('ACTI')
+ end
+ end
+
def before_validation
self.project = issue.project if issue && project.nil?
end