Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update time_entry.rb #12651

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/costs/app/models/time_entry.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class TimeEntry < ApplicationRecord

validates_presence_of :user_id, :activity_id, :project_id, :hours, :spent_on
validates_numericality_of :hours, allow_nil: true, message: :invalid
validates_length_of :comments, maximum: 255, allow_nil: true
validates_length_of :comments, maximum: 1000, allow_nil: true

scope :on_work_packages, ->(work_packages) { where(work_package_id: work_packages) }

Expand Down
Loading