Feature #25052 » disable-description-field.diff
app/models/tracker.rb (working copy) | ||
---|---|---|
18 | 18 |
class Tracker < ActiveRecord::Base |
19 | 19 |
include Redmine::SafeAttributes |
20 | 20 | |
21 |
CORE_FIELDS_UNDISABLABLE = %w(project_id tracker_id subject description priority_id is_private).freeze
|
|
21 |
CORE_FIELDS_UNDISABLABLE = %w(project_id tracker_id subject priority_id is_private).freeze |
|
22 | 22 |
# Fields that can be disabled |
23 | 23 |
# Other (future) fields should be appended, not inserted! |
24 |
CORE_FIELDS = %w(assigned_to_id category_id fixed_version_id parent_issue_id start_date due_date estimated_hours done_ratio).freeze |
|
24 |
CORE_FIELDS = %w(assigned_to_id category_id fixed_version_id parent_issue_id start_date due_date estimated_hours done_ratio description).freeze
|
|
25 | 25 |
CORE_FIELDS_ALL = (CORE_FIELDS_UNDISABLABLE + CORE_FIELDS).freeze |
26 | 26 | |
27 | 27 |
before_destroy :check_integrity |