mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 03:50:54 +01:00
b1b638bd14
Summary: Ref T12819. More ferret engine support. Test Plan: Indexed and searched commits and repositories. Reviewers: chad Reviewed By: chad Maniphest Tasks: T12819 Differential Revision: https://secure.phabricator.com/D18572
18 lines
309 B
PHP
18 lines
309 B
PHP
<?php
|
|
|
|
final class DiffusionCommitFerretEngine
|
|
extends PhabricatorFerretEngine {
|
|
|
|
public function getApplicationName() {
|
|
return 'repository';
|
|
}
|
|
|
|
public function getScopeName() {
|
|
return 'commit';
|
|
}
|
|
|
|
public function newSearchEngine() {
|
|
return new PhabricatorCommitSearchEngine();
|
|
}
|
|
|
|
}
|