]> source.dussan.org Git - redmine.git/commitdiff
remove spaces inside {} of app/models/time_entry.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 16 Nov 2020 12:22:32 +0000 (12:22 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 16 Nov 2020 12:22:32 +0000 (12:22 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20397 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/time_entry.rb

index b81eef7872711e853250d558aae5434888051b52..eed84dc1b0986a1095596a5a9e74bebecef1fbbd 100644 (file)
@@ -48,8 +48,8 @@ class TimeEntry < ActiveRecord::Base
                             :scope => proc { joins(:project).preload(:project) }
 
   validates_presence_of :author_id, :user_id, :activity_id, :project_id, :hours, :spent_on
-  validates_presence_of :issue_id, :if => lambda { Setting.timelog_required_fields.include?('issue_id') }
-  validates_presence_of :comments, :if => lambda { Setting.timelog_required_fields.include?('comments') }
+  validates_presence_of :issue_id, :if => lambda {Setting.timelog_required_fields.include?('issue_id')}
+  validates_presence_of :comments, :if => lambda {Setting.timelog_required_fields.include?('comments')}
   validates_numericality_of :hours, :allow_nil => true, :message => :invalid
   validates_length_of :comments, :maximum => 1024, :allow_nil => true
   validates :spent_on, :date => true
@@ -218,7 +218,7 @@ class TimeEntry < ActiveRecord::Base
     users = []
     if project
       users = project.members.active.preload(:user)
-      users = users.map(&:user).select{ |u| u.allowed_to?(:log_time, project) }
+      users = users.map(&:user).select{|u| u.allowed_to?(:log_time, project)}
     end
     users << User.current if User.current.logged? && !users.include?(User.current)
     users