mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-31 06:28:13 +02:00
Add a "Date Updated (Oldest First)" sort order to Maniphest
Summary: Closes T8484 Test Plan: Create sample tasks then navigate to Maniphest > Advanced Search and choose choose "Date Updated (Oldest First)" in the "Order By" select box. Reviewers: lpriestley, epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Maniphest Tasks: T8484 Differential Revision: https://secure.phabricator.com/D13237
This commit is contained in:
parent
c075f7f63f
commit
72fc3da416
1 changed files with 6 additions and 1 deletions
|
@ -721,9 +721,13 @@ final class ManiphestTaskQuery extends PhabricatorCursorPagedPolicyAwareQuery {
|
||||||
),
|
),
|
||||||
'updated' => array(
|
'updated' => array(
|
||||||
'vector' => array('updated', 'id'),
|
'vector' => array('updated', 'id'),
|
||||||
'name' => pht('Date Updated'),
|
'name' => pht('Date Updated (Latest First)'),
|
||||||
'aliases' => array(self::ORDER_MODIFIED),
|
'aliases' => array(self::ORDER_MODIFIED),
|
||||||
),
|
),
|
||||||
|
'outdated' => array(
|
||||||
|
'vector' => array('-updated', '-id'),
|
||||||
|
'name' => pht('Date Updated (Oldest First)'),
|
||||||
|
),
|
||||||
'title' => array(
|
'title' => array(
|
||||||
'vector' => array('title', 'id'),
|
'vector' => array('title', 'id'),
|
||||||
'name' => pht('Title'),
|
'name' => pht('Title'),
|
||||||
|
@ -739,6 +743,7 @@ final class ManiphestTaskQuery extends PhabricatorCursorPagedPolicyAwareQuery {
|
||||||
array(
|
array(
|
||||||
'priority',
|
'priority',
|
||||||
'updated',
|
'updated',
|
||||||
|
'outdated',
|
||||||
'newest',
|
'newest',
|
||||||
'oldest',
|
'oldest',
|
||||||
'title',
|
'title',
|
||||||
|
|
Loading…
Add table
Reference in a new issue