mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
Extract finding the default or "middle" issue priority into its own class method (#32628).
Patch by Jan Schulz-Hofen. git-svn-id: http://svn.redmine.org/redmine/trunk@19447 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -47,18 +47,25 @@ class IssuePriority < Enumeration
|
||||
update_all :position_name => nil
|
||||
end
|
||||
|
||||
def self.default_or_middle
|
||||
default || begin
|
||||
priorities = active
|
||||
priorities[(priorities.size - 1) / 2]
|
||||
end
|
||||
end
|
||||
|
||||
# Updates position_name for active priorities
|
||||
# Called from migration 20121026003537_populate_enumerations_position_name
|
||||
def self.compute_position_names
|
||||
priorities = active
|
||||
if priorities.any?
|
||||
default = priorities.detect(&:is_default?) || priorities[(priorities.size - 1) / 2]
|
||||
default_position = default_or_middle.position
|
||||
priorities.each_with_index do |priority, index|
|
||||
name =
|
||||
case
|
||||
when priority.position == default.position
|
||||
when priority.position == default_position
|
||||
"default"
|
||||
when priority.position < default.position
|
||||
when priority.position < default_position
|
||||
index == 0 ? "lowest" : "low#{index+1}"
|
||||
else
|
||||
index == (priorities.size - 1) ? "highest" : "high#{priorities.size - index}"
|
||||
|
||||
Reference in New Issue
Block a user