mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 00:02:41 +01:00
19 lines
390 B
PHP
19 lines
390 B
PHP
|
<?php
|
||
|
|
||
|
final class DiffusionRepositorySearchConduitAPIMethod
|
||
|
extends PhabricatorSearchEngineAPIMethod {
|
||
|
|
||
|
public function getAPIMethodName() {
|
||
|
return 'diffusion.repository.search';
|
||
|
}
|
||
|
|
||
|
public function newSearchEngine() {
|
||
|
return new PhabricatorRepositorySearchEngine();
|
||
|
}
|
||
|
|
||
|
public function getMethodSummary() {
|
||
|
return pht('Read information about repositories.');
|
||
|
}
|
||
|
|
||
|
}
|