Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/people/conduit/UserSearchConduitAPIMethod.php
12256 views
1
<?php
2
3
final class UserSearchConduitAPIMethod
4
extends PhabricatorSearchEngineAPIMethod {
5
6
public function getAPIMethodName() {
7
return 'user.search';
8
}
9
10
public function newSearchEngine() {
11
return new PhabricatorPeopleSearchEngine();
12
}
13
14
public function getMethodSummary() {
15
return pht('Read information about users.');
16
}
17
18
}
19
20