Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14056263
D8705.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D8705.diff
View Options
diff --git a/src/applications/diffusion/controller/DiffusionCommitController.php b/src/applications/diffusion/controller/DiffusionCommitController.php
--- a/src/applications/diffusion/controller/DiffusionCommitController.php
+++ b/src/applications/diffusion/controller/DiffusionCommitController.php
@@ -778,9 +778,9 @@
'dynamic' => array(
'add-auditors-tokenizer' => array(
'actions' => array('add_auditors' => 1),
- 'src' => '/typeahead/common/usersorprojects/',
+ 'src' => '/typeahead/common/usersprojectsorpackages/',
'row' => 'add-auditors',
- 'placeholder' => pht('Type a user or project name...'),
+ 'placeholder' => pht('Type a user, project, or package name...'),
),
'add-ccs-tokenizer' => array(
'actions' => array('add_ccs' => 1),
diff --git a/src/applications/typeahead/controller/PhabricatorTypeaheadCommonDatasourceController.php b/src/applications/typeahead/controller/PhabricatorTypeaheadCommonDatasourceController.php
--- a/src/applications/typeahead/controller/PhabricatorTypeaheadCommonDatasourceController.php
+++ b/src/applications/typeahead/controller/PhabricatorTypeaheadCommonDatasourceController.php
@@ -73,6 +73,11 @@
$need_users = true;
$need_projs = true;
break;
+ case 'usersprojectsorpackages':
+ $need_users = true;
+ $need_projs = true;
+ $need_packages = true;
+ break;
case 'repositories':
$need_repos = true;
break;
@@ -309,6 +314,7 @@
$packages = id(new PhabricatorOwnersPackage())->loadAll();
foreach ($packages as $package) {
$results[] = id(new PhabricatorTypeaheadResult())
+ ->setIcon('pl-testplan')
->setName($package->getName())
->setURI('/owners/package/'.$package->getID().'/')
->setPHID($package->getPHID());
diff --git a/src/view/form/control/AphrontFormTokenizerControl.php b/src/view/form/control/AphrontFormTokenizerControl.php
--- a/src/view/form/control/AphrontFormTokenizerControl.php
+++ b/src/view/form/control/AphrontFormTokenizerControl.php
@@ -94,9 +94,11 @@
'projects' => pht('Type a project name...'),
'repositories' => pht('Type a repository name...'),
'packages' => pht('Type a package name...'),
+ 'macros' => pht('Type a macro name...'),
'arcanistproject' => pht('Type an arc project name...'),
'accountsorprojects' => pht('Type a user or project name...'),
- 'macros' => pht('Type a macro name...'),
+ 'usersprojectsorpackages' =>
+ pht('Type a user, project, or package name...'),
);
return idx($map, $request);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Nov 17, 7:18 PM (1 d, 12 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6726608
Default Alt Text
D8705.diff (2 KB)
Attached To
Mode
D8705: Audit - add ability to add a package as an auditor
Attached
Detach File
Event Timeline
Log In to Comment