Page MenuHomec4science

ProjectSearchConduitAPIMethod.php
No OneTemporary

File Metadata

Created
Sun, Jan 26, 06:39

ProjectSearchConduitAPIMethod.php

<?php
final class ProjectSearchConduitAPIMethod
extends PhabricatorSearchEngineAPIMethod {
public function getAPIMethodName() {
return 'project.search';
}
public function newSearchEngine() {
return new PhabricatorProjectSearchEngine();
}
public function getMethodSummary() {
return pht('Read information about projects.');
}
protected function getCustomQueryMaps($query) {
return array(
'slugMap' => $query->getSlugMap(),
);
}
}

Event Timeline