diff options
Diffstat (limited to 'app/models/timelog.rb')
-rw-r--r-- | app/models/timelog.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/timelog.rb b/app/models/timelog.rb index 96fd485b797..3f0e827cf61 100644 --- a/app/models/timelog.rb +++ b/app/models/timelog.rb @@ -6,6 +6,7 @@ class Timelog < ApplicationRecord before_save :set_project validates :time_spent, :user, presence: true + validates :summary, length: { maximum: 255 } validate :issuable_id_is_present, unless: :importing? belongs_to :issue, touch: true |