mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-02 19:52:44 +01:00
f1204c8c45
Summary: See PHI177. Ref T12974. PonderQuestion was overlooked during the Ferret engine conversions. Test Plan: Ran migrations, searched for questions, got results: {F5241185} Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T12974 Differential Revision: https://secure.phabricator.com/D18736
18 lines
303 B
PHP
18 lines
303 B
PHP
<?php
|
|
|
|
final class PonderQuestionFerretEngine
|
|
extends PhabricatorFerretEngine {
|
|
|
|
public function getApplicationName() {
|
|
return 'ponder';
|
|
}
|
|
|
|
public function getScopeName() {
|
|
return 'question';
|
|
}
|
|
|
|
public function newSearchEngine() {
|
|
return new PonderQuestionSearchEngine();
|
|
}
|
|
|
|
}
|