mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
0da3f34728
Summary: See PHI90. For now, this only provides a limited amount of information, but should satisfy the use case in PHI90 and build toward a more complete version in the future. Test Plan: Used new Conduit method to retrieve information about diffs. Reviewers: amckinley Reviewed By: amckinley Differential Revision: https://secure.phabricator.com/D18744
18 lines
372 B
PHP
18 lines
372 B
PHP
<?php
|
|
|
|
final class DifferentialDiffSearchConduitAPIMethod
|
|
extends PhabricatorSearchEngineAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'differential.diff.search';
|
|
}
|
|
|
|
public function newSearchEngine() {
|
|
return new DifferentialDiffSearchEngine();
|
|
}
|
|
|
|
public function getMethodSummary() {
|
|
return pht('Read information about diffs.');
|
|
}
|
|
|
|
}
|