Merged r17869 from trunk to 4.0-stable (#30718).

git-svn-id: http://svn.redmine.org/redmine/branches/4.0-stable@17872 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2019-02-16 00:35:24 +00:00
parent 4bb955c482
commit 10ad1e6006
2 changed files with 4 additions and 10 deletions

View File

@@ -24,12 +24,6 @@ class Project < ActiveRecord::Base
STATUS_CLOSED = 5
STATUS_ARCHIVED = 9
LABEL_BY_STATUS = {
1 => l(:project_status_active),
5 => l(:project_status_closed),
9 => l(:project_status_archived),
}
# Maximum length for project identifiers
IDENTIFIER_MAX_LENGTH = 100

View File

@@ -581,10 +581,10 @@ class Query < ActiveRecord::Base
# Returns a scope of project statuses that are available as columns or filters
def project_statuses_values
project_statuses = Project::LABEL_BY_STATUS
# Remove archived status from filters
project_statuses.delete(9)
project_statuses.stringify_keys.invert.to_a
[
[l(:project_status_active), "#{Project::STATUS_ACTIVE}"],
[l(:project_status_closed), "#{Project::STATUS_CLOSED}"]
]
end
# Adds available filters